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:
parent
ef6a76abe8
commit
694d846b64
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user