Added documentation, fixed some minor bugs/typos
This commit is contained in:
@@ -1,8 +1,23 @@
|
||||
/**
|
||||
* JavaScript functions used on tbl_select.php
|
||||
* @fileoverview JavaScript functions used on tbl_select.php
|
||||
*
|
||||
* @requires jQuery
|
||||
* @requires js/functions.js
|
||||
*/
|
||||
|
||||
/**
|
||||
* Ajax event handlers for this page
|
||||
*
|
||||
* Actions ajaxified here:
|
||||
* Table Search
|
||||
*/
|
||||
$(document).ready(function() {
|
||||
|
||||
/**
|
||||
* Ajax event handler for Table Search
|
||||
*
|
||||
* @uses PMA_ajaxShowMessage()
|
||||
*/
|
||||
$("#tbl_search_form").live('submit', function(event) {
|
||||
event.preventDefault();
|
||||
|
||||
@@ -14,4 +29,4 @@ $(document).ready(function() {
|
||||
$("#searchresults").html(data);
|
||||
})
|
||||
})
|
||||
}, 'top.frame_content');
|
||||
}, 'top.frame_content'); // end $(document).ready()
|
Reference in New Issue
Block a user