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 17:01:31 +0400
committerMichal Čihař <mcihar@suse.cz>2013-07-30 17:01:31 +0400
commit4c12a6ad164f224f632b8e4b921ee9fd018c28de (patch)
tree9d6bcad56f0792c0ec5f9e08fd2edd486f40ea35 /setup
parentbe7ad383c8f38833bf5fee63ba83b63876da7621 (diff)
Fixed indentation
Diffstat (limited to 'setup')
-rw-r--r--setup/scripts.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/setup/scripts.js b/setup/scripts.js
index c8afe52cf0..754f879e8d 100644
--- a/setup/scripts.js
+++ b/setup/scripts.js
@@ -186,16 +186,16 @@ function ajaxValidate(parent, id, values)
//
$(function () {
- $('.userprefs-allow').click(function (e) {
- if (this != e.target) {
- return;
- }
- var el = $(this).find('input');
- if (el.prop('disabled')) {
- return;
- }
- el.prop('checked', !el.prop('checked'));
- });
+ $('.userprefs-allow').click(function (e) {
+ if (this != e.target) {
+ return;
+ }
+ var el = $(this).find('input');
+ if (el.prop('disabled')) {
+ return;
+ }
+ el.prop('checked', !el.prop('checked'));
+ });
});
//