Added JSDoc-Toolkit compatible documentation to js/db_search.js

This commit is contained in:
ninadsp
2010-08-10 19:30:43 +05:30
parent ee6bcb1b16
commit 98d3916e91

View File

@@ -1,8 +1,25 @@
/** /**
* JavaScript functions used on db_search.php * @fileoverview JavaScript functions used on Database Search page
* @name Database Search
*
* @requires jQuery
* @requires js/functions.js
*/
/**
* AJAX script for the Database Search page.
*
* Actions ajaxified here:
* Retrieve result of SQL query
*/ */
$(document).ready(function() { $(document).ready(function() {
/**
* Ajax Event handler for retrieving the result of an SQL Query
*
* @uses PMA_ajaxShowMessage()
*/
$("#db_search_form").live('submit', function(event) { $("#db_search_form").live('submit', function(event) {
event.preventDefault(); event.preventDefault();