From 694d846b6423f27ccf95616d9bdf5aa95e16bf02 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Mon, 24 Oct 2016 18:11:04 +0530 Subject: [PATCH] ajaxOptions.dataType can also return multiple space-separated values Ref : http://api.jquery.com/jQuery.ajax/#jQuery-ajax-settings Fix error in d344a8f Fix #12454 Signed-off-by: Deven Bansod --- js/console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/console.js b/js/console.js index ad5893bd4e..8950086c96 100644 --- a/js/console.js +++ b/js/console.js @@ -192,7 +192,7 @@ var PMA_console = { }); $(document).ajaxComplete(function (event, xhr, ajaxOptions) { - if (ajaxOptions.dataType != 'json') { + if (ajaxOptions.dataType && ajaxOptions.dataType.indexOf('json') != -1) { return; } try {