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 <devenbansod.bits@gmail.com>
This commit is contained in:
Deven Bansod 2016-10-24 18:11:04 +05:30
parent ef6a76abe8
commit 694d846b64

View File

@ -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 {