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
NG site: http://goo.gl/7ttj6
Problems: loader.js use document.createElement method to create script tag.
But the target NG site overrides the document.createElement method for customizing the native method(setAttribute method) of script element.
// TODO
if (document.createElement.toString().indexOf('[native code]')<0) {
console.log('May not be supported because createElement method is Changed.');
// Solution: call getNativeFunction in jquery.selection.js
}
The text was updated successfully, but these errors were encountered:
NG site: http://goo.gl/7ttj6
Problems: loader.js use
document.createElement
method to createscript
tag.But the target NG site overrides the
document.createElement
method for customizing the native method(setAttribute
method) ofscript
element.The text was updated successfully, but these errors were encountered: