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:
authorMarc Delisle <marc@infomarc.info>2012-12-20 14:53:55 +0400
committerMarc Delisle <marc@infomarc.info>2012-12-20 14:53:55 +0400
commitab759612797664a78b088925d82ab6c5225af5f4 (patch)
tree7d34d242d99337e574f59d8384ebf836bdb01282 /js/db_search.js
parent6686d1ac1e8604126b860011e05aaa11c8295f6c (diff)
js cleanup: space after "if"
Diffstat (limited to 'js/db_search.js')
-rw-r--r--js/db_search.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/db_search.js b/js/db_search.js
index b9eb1dfffd..ac50b1c39f 100644
--- a/js/db_search.js
+++ b/js/db_search.js
@@ -38,7 +38,7 @@ AJAX.registerTeardown('db_search.js', function() {
function loadResult(result_path, table_name, link, ajaxEnable)
{
$(function() {
- if(ajaxEnable) {
+ if (ajaxEnable) {
/** Hides the results shown by the delete criteria */
var $msg = PMA_ajaxShowMessage(PMA_messages['strBrowsing'], false);
$('#sqlqueryform').hide();
@@ -79,8 +79,8 @@ function deleteResult(result_path, msg, ajaxEnable)
$('#sqlqueryform').hide();
$('#togglequerybox').hide();
/** Conformation message for deletion */
- if(confirm(msg)) {
- if(ajaxEnable) {
+ if (confirm(msg)) {
+ if (ajaxEnable) {
var $msg = PMA_ajaxShowMessage(PMA_messages['strDeleting'], false);
/** Load the deleted option to the page*/
$('#sqlqueryform').html('');