aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/DOMEval.js
blob: 222b0ca2a2c93503f47193dadcfabfb08715eeec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
} );