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:
authorUmair Khan <omerjerk@gmail.com>2014-02-20 22:41:33 +0400
committerUmair Khan <omerjerk@gmail.com>2014-02-20 22:44:18 +0400
commit7baa79c28cde1ce72003e85e964c26920f483ca2 (patch)
tree4208e0eceda966634221e7ba895478ecaf9ccdee /js/export.js
parentf7f7e34f63817e322b7a98eb4d31da6751765569 (diff)
BugFix #4294
Signed-off-by: Umair Khan <omerjerk@gmail.com>
Diffstat (limited to 'js/export.js')
-rw-r--r--js/export.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/export.js b/js/export.js
index a16bd29221..f169004727 100644
--- a/js/export.js
+++ b/js/export.js
@@ -185,9 +185,10 @@ AJAX.registerOnload('export.js', function () {
var active_plugin = $("#plugins option:selected").val();
var force_file = $("#force_file_" + active_plugin).val();
if (force_file == "true") {
+ $("#radio_dump_asfile").prop('checked', true);
$("#radio_view_as_text").prop('disabled', true).parent().fadeTo('fast', 0.4);
} else {
- $("#radio_view_as_text").removeProp('disabled').parent().fadeTo('fast', 1);
+ $("#radio_view_as_text").prop('disabled', false).parent().fadeTo('fast', 1);
}
});
});