Commit e93c313a by Qiang Xue

Merge pull request #2429 from yiiframework-com-ua/master

Fix for multiple $.ajax calls with "JSONP" dataType
parents 3a930bd6 a2db4e04
......@@ -236,6 +236,9 @@ yii = (function ($) {
return this.src.charAt(0) === '/' ? hostInfo + this.src : this.src;
}).toArray();
$.ajaxPrefilter('script', function (options, originalOptions, xhr) {
if(options.dataType == 'jsonp') {
return;
}
var url = options.url.charAt(0) === '/' ? hostInfo + options.url : options.url;
if ($.inArray(url, loadedScripts) === -1) {
loadedScripts.push(url);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment