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
path: root/setup
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-07-30 16:56:41 +0400
committerMichal Čihař <mcihar@suse.cz>2013-07-30 16:56:41 +0400
commite9f3e1c62472f0a73cba5ee045f39a4e22fa1732 (patch)
treefe0014e09c9df17f07df2e79ce5ddb08e9d99620 /setup
parent7a97781c238a6b1bc887a9dff8f96afe9bbf82d0 (diff)
Various coding style improvements
Diffstat (limited to 'setup')
-rw-r--r--setup/scripts.js21
1 files changed, 10 insertions, 11 deletions
diff --git a/setup/scripts.js b/setup/scripts.js
index c4bb8c9d37..c8afe52cf0 100644
--- a/setup/scripts.js
+++ b/setup/scripts.js
@@ -18,14 +18,14 @@ var hiddenMessages = [];
$(function () {
var hidden = hiddenMessages.length;
for (var i = 0; i < hidden; i++) {
- $('#'+hiddenMessages[i]).css('display', 'none');
+ $('#' + hiddenMessages[i]).css('display', 'none');
}
if (hidden > 0) {
var link = $('#show_hidden_messages');
link.click(function (e) {
e.preventDefault();
for (var i = 0; i < hidden; i++) {
- $('#'+hiddenMessages[i]).show(500);
+ $('#' + hiddenMessages[i]).show(500);
}
$(this).remove();
});
@@ -58,7 +58,7 @@ $.extend(true, validators, {
* @param {boolean} isKeyUp
*/
hide_db: function (isKeyUp) {
- if (!isKeyUp && this.value != '') {
+ if (!isKeyUp && this.value !== '') {
var data = {};
data[this.id] = this.value;
ajaxValidate(this, 'Servers/1/hide_db', data);
@@ -71,7 +71,7 @@ $.extend(true, validators, {
* @param {boolean} isKeyUp
*/
TrustedProxies: function (isKeyUp) {
- if (!isKeyUp && this.value != '') {
+ if (!isKeyUp && this.value !== '') {
var data = {};
data[this.id] = this.value;
ajaxValidate(this, 'TrustedProxies', data);
@@ -111,8 +111,7 @@ $.extend(true, validators, {
}
var prefix = getIdPrefix($(this).find('input'));
- var pmadb_active = $('#' + prefix + 'pmadb').val() != '';
- if (pmadb_active) {
+ if ($('#' + prefix + 'pmadb').val() !== '') {
ajaxValidate(this, 'Server_pmadb', getAllValues());
}
@@ -134,12 +133,12 @@ function ajaxValidate(parent, id, values)
// ensure that parent is a fieldset
if (parent.attr('tagName') != 'FIELDSET') {
parent = parent.closest('fieldset');
- if (parent.length == 0) {
+ if (parent.length === 0) {
return false;
}
}
- if (parent.data('ajax') != null) {
+ if (parent.data('ajax') !== null) {
parent.data('ajax').abort();
}
@@ -153,15 +152,15 @@ function ajaxValidate(parent, id, values)
values: $.toJSON(values)
},
success: function (response) {
- if (response == null) {
+ if (response === null) {
return;
}
var error = {};
if (typeof response != 'object') {
error[parent.id] = [response];
- } else if (typeof response['error'] != 'undefined') {
- error[parent.id] = [response['error']];
+ } else if (typeof response.error != 'undefined') {
+ error[parent.id] = [response.error];
} else {
for (var key in response) {
var value = response[key];