diff options
Diffstat (limited to 'src/manipulation/setGlobalEval.js')
-rw-r--r-- | src/manipulation/setGlobalEval.js | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/manipulation/setGlobalEval.js b/src/manipulation/setGlobalEval.js index cf95240a4..c6f7ee9ab 100644 --- a/src/manipulation/setGlobalEval.js +++ b/src/manipulation/setGlobalEval.js @@ -1,8 +1,4 @@ -define( [ - "../data/var/dataPriv" -], function( dataPriv ) { - -"use strict"; +import dataPriv from "../data/var/dataPriv.js"; // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { @@ -18,5 +14,4 @@ function setGlobalEval( elems, refElements ) { } } -return setGlobalEval; -} ); +export default setGlobalEval; |