kopia lustrzana https://github.com/c9/core
do not add crossOrigin attribute on same origin scripts
rodzic
82b56224ba
commit
329ac9812e
|
@ -93,7 +93,8 @@ function loadScript(path, token, callback) {
|
||||||
|
|
||||||
var and = path.indexOf("?") >= 0 ? "&" : "?";
|
var and = path.indexOf("?") >= 0 ? "&" : "?";
|
||||||
s.src = path + (token ? and + "access_token=" + encodeURIComponent(token) : "");
|
s.src = path + (token ? and + "access_token=" + encodeURIComponent(token) : "");
|
||||||
s.crossOrigin = true;
|
if (s.src.indexOf("://" + window.location.host) == -1)
|
||||||
|
s.crossOrigin = true;
|
||||||
head.appendChild(s);
|
head.appendChild(s);
|
||||||
|
|
||||||
s.onload = s.onreadystatechange = function(_, isAbort) {
|
s.onload = s.onreadystatechange = function(_, isAbort) {
|
||||||
|
|
Ładowanie…
Reference in New Issue