You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Optional AJAX dependency, but won't run scripts if not presentif(jQuery._evalUrl&&!node.noModule){jQuery._evalUrl(node.src,{nonce: node.nonce||node.getAttribute("nonce")},doc);}jQuery._evalUrl=function(url,options,doc){returnjQuery.ajax({url: url,// Make this explicit, since user can override this through ajaxSetup (#11264)type: "GET",dataType: "script",cache: true,async: false,global: false,// Only evaluate the response if it is successful (gh-4126)// dataFilter is not invoked for failure responses, so using it instead// of the default converter is kludgy but it works.converters: {"text script": function(){}},dataFilter: function(response){jQuery.globalEval(response,options,doc);}});};
I tried to execute the above code but it did not send a request
The text was updated successfully, but these errors were encountered: