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>2013-04-15 18:07:29 +0400
committerMichal Čihař <mcihar@suse.cz>2013-04-15 18:20:04 +0400
commite2571c5628b7c5b8aa93aeada14370040a717106 (patch)
treec6e0b984c036d229731d48fffcbf2bec20fdc9c3 /js/tbl_select.js
parentb044cfc3b2b3c1a92d1bf61d00d23edf107d5534 (diff)
Various javascript spacing fixes
Diffstat (limited to 'js/tbl_select.js')
-rw-r--r--js/tbl_select.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tbl_select.js b/js/tbl_select.js
index 8c9b0532d4..15b2fede51 100644
--- a/js/tbl_select.js
+++ b/js/tbl_select.js
@@ -176,7 +176,7 @@ AJAX.registerOnload('tbl_select.js', function () {
// If the chosen function takes two geomerty objects as parameters
var $operator = $geomFuncSelector.parents('tr').find('td:nth-child(5)').find('select');
- if ($.inArray($geomFuncSelector.val(), binaryFunctions) >= 0){
+ if ($.inArray($geomFuncSelector.val(), binaryFunctions) >= 0) {
$operator.prop('readonly', true);
} else {
$operator.prop('readonly', false);
@@ -184,7 +184,7 @@ AJAX.registerOnload('tbl_select.js', function () {
// if the chosen function's output is a geometry, enable GIS editor
var $editorSpan = $geomFuncSelector.parents('tr').find('span.open_search_gis_editor');
- if ($.inArray($geomFuncSelector.val(), outputGeomFunctions) >= 0){
+ if ($.inArray($geomFuncSelector.val(), outputGeomFunctions) >= 0) {
$editorSpan.show();
} else {
$editorSpan.hide();