update confirm
This commit is contained in:
parent
166a16b60d
commit
1ea5d5f307
191 changed files with 8714 additions and 48569 deletions
14
dashboard-ui/bower_components/jquery/src/core/DOMEval.js
vendored
Normal file
14
dashboard-ui/bower_components/jquery/src/core/DOMEval.js
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
define( [
|
||||
"../var/document"
|
||||
], function( document ) {
|
||||
function DOMEval( code, doc ) {
|
||||
doc = doc || document;
|
||||
|
||||
var script = doc.createElement( "script" );
|
||||
|
||||
script.text = code;
|
||||
doc.head.appendChild( script ).parentNode.removeChild( script );
|
||||
}
|
||||
|
||||
return DOMEval;
|
||||
} );
|
Loading…
Add table
Add a link
Reference in a new issue