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ř <michal@cihar.com>2014-05-08 14:03:34 +0400
committerMichal Čihař <michal@cihar.com>2014-05-08 14:03:34 +0400
commit4ff140c5be5489bd2985aebbfbe8090116bc8805 (patch)
tree51c1b9509cc20bbc4294880330a1e3ebe086719d /js/tbl_change.js
parent9a88a68e1f4b2abacb6c54c1c7f0df67416c0483 (diff)
Correct spacing before javascript operators
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'js/tbl_change.js')
-rw-r--r--js/tbl_change.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/js/tbl_change.js b/js/tbl_change.js
index b95efc48ef..0f3cd4a068 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -620,11 +620,10 @@ function changeValueFieldType(elem, searchIndex)
}
var type = $(elem).val();
- if (
- 'IN (...)' == type
- || 'NOT IN (...)' == type
- || 'BETWEEN' == type
- || 'NOT BETWEEN' == type
+ if ('IN (...)' == type ||
+ 'NOT IN (...)' == type ||
+ 'BETWEEN' == type ||
+ 'NOT BETWEEN' == type
) {
$("#fieldID_" + searchIndex).attr('multiple', '');
} else {