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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2013-04-19 10:23:52 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2013-04-19 10:23:52 +0400
commitcc0ea11024920f331b6288d184a480ccb276a191 (patch)
treeadc729e0580a283b527178f2ae547e8f7b06e1b3 /js/export.js
parent73b83321d6b5c0580764776148a4a1368055a246 (diff)
parentfeaad54ef5e377267dca63527dea383c6d2e5327 (diff)
Merge branch 'QA_4_0'
Diffstat (limited to 'js/export.js')
-rw-r--r--js/export.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/export.js b/js/export.js
index 8d077ba312..35f554c196 100644
--- a/js/export.js
+++ b/js/export.js
@@ -241,8 +241,8 @@ function disable_dump_some_rows_sub_options()
{
$("label[for='limit_to']").fadeTo('fast', 0.4);
$("label[for='limit_from']").fadeTo('fast', 0.4);
- $("input[type='text'][name='limit_to']").prop('disabled', true);
- $("input[type='text'][name='limit_from']").prop('disabled', true);
+ $("input[type='text'][name='limit_to']").prop('disabled', 'disabled');
+ $("input[type='text'][name='limit_from']").prop('disabled', 'disabled');
}
/**
@@ -252,6 +252,6 @@ function enable_dump_some_rows_sub_options()
{
$("label[for='limit_to']").fadeTo('fast', 1);
$("label[for='limit_from']").fadeTo('fast', 1);
- $("input[type='text'][name='limit_to']").removeProp('disabled');
- $("input[type='text'][name='limit_from']").removeProp('disabled');
+ $("input[type='text'][name='limit_to']").prop('disabled', '');
+ $("input[type='text'][name='limit_from']").prop('disabled', '');
}