Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2011-08-05 16:49:23 +0400
committerMichal Čihař <mcihar@suse.cz>2011-08-05 16:49:23 +0400
commit1ec0b69e6bf3378188a051b45fb2c0e7ea93b990 (patch)
tree1bf578071b04275411cdb69c64ce0e54ce10391d /js/db_search.js
parent6205d419b68d57105d985a4a5335498337f6ccf4 (diff)
Coding style, function definitions
Diffstat (limited to 'js/db_search.js')
-rw-r--r--js/db_search.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/db_search.js b/js/db_search.js
index 72b30463d4..3e2eeb40a7 100644
--- a/js/db_search.js
+++ b/js/db_search.js
@@ -15,7 +15,8 @@
*/
/** Loads the database search results */
-function loadResult(result_path , table_name , link , ajaxEnable){
+function loadResult(result_path , table_name , link , ajaxEnable)
+{
$(document).ready(function() {
if(ajaxEnable)
{
@@ -43,7 +44,8 @@ function loadResult(result_path , table_name , link , ajaxEnable){
}
/** Delete the selected search results */
-function deleteResult(result_path , msg , ajaxEnable){
+function deleteResult(result_path , msg , ajaxEnable)
+{
$(document).ready(function() {
/** Hides the results shown by the browse criteria */
$("#table-info").hide();