jquery updated

main link added
This commit is contained in:
Samuel Philipp 2016-11-23 00:12:51 +01:00
parent f0bbcfb654
commit 576fbdeb2f
122 changed files with 12266 additions and 2569 deletions

View file

@ -0,0 +1,16 @@
define( [
"../var/document"
], function( document ) {
"use strict";
function DOMEval( code, doc ) {
doc = doc || document;
var script = doc.createElement( "script" );
script.text = code;
doc.head.appendChild( script ).parentNode.removeChild( script );
}
return DOMEval;
} );