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>2014-12-11 13:34:12 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2014-12-11 13:34:12 +0300
commit4c69e7a8570dc847085d782f093be983406c6b50 (patch)
tree7c8102181929d2a9b6817ef0c24be195c432e7e6 /js/export.js
parent8685816f693cf7d0a5a98b6fecd6a79e560d492c (diff)
parent43db57bc19cce7f167874a902cef5b1de788d2a0 (diff)
Merge branch 'QA_4_3'
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/export.js')
-rw-r--r--js/export.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/export.js b/js/export.js
index 8b4583f0c6..82e3ed6542 100644
--- a/js/export.js
+++ b/js/export.js
@@ -204,7 +204,9 @@ AJAX.registerOnload('export.js', function () {
*/
function toggle_quick_or_custom()
{
- if ($("#radio_custom_export").prop("checked")) {
+ if ($("input[name='quick_or_custom']").length == 0 // custom_no_form option
+ || $("#radio_custom_export").prop("checked") // custom
+ ) {
$("#databases_and_tables").show();
$("#rows").show();
$("#output").show();
@@ -212,7 +214,7 @@ function toggle_quick_or_custom()
$("#output_quick_export").hide();
var selected_plugin_name = $("#plugins option:selected").val();
$("#" + selected_plugin_name + "_options").show();
- } else {
+ } else { // quick
$("#databases_and_tables").hide();
$("#rows").hide();
$("#output").hide();