From 98d3916e910c9982dacaf3b924a8ab33cc9205bb Mon Sep 17 00:00:00 2001 From: ninadsp Date: Tue, 10 Aug 2010 19:30:43 +0530 Subject: [PATCH] Added JSDoc-Toolkit compatible documentation to js/db_search.js --- js/db_search.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/js/db_search.js b/js/db_search.js index 43aced8d4..8a0474ff2 100644 --- a/js/db_search.js +++ b/js/db_search.js @@ -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() { + + /** + * Ajax Event handler for retrieving the result of an SQL Query + * + * @uses PMA_ajaxShowMessage() + */ $("#db_search_form").live('submit', function(event) { event.preventDefault();