diff options
Diffstat (limited to 'src/scenario/bootstrap.js')
| -rw-r--r-- | src/scenario/bootstrap.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/scenario/bootstrap.js b/src/scenario/bootstrap.js index b49530df..169f1860 100644 --- a/src/scenario/bootstrap.js +++ b/src/scenario/bootstrap.js @@ -12,10 +12,12 @@ })(); function addScript(path) { document.write('<script type="text/javascript" src="' + prefix + path + '"></script>'); - }; + } + function addCSS(path) { document.write('<link rel="stylesheet" type="text/css" href="' + prefix + path + '"/>'); - }; + } + window.onload = function(){ if (!_.stepper) { _.stepper = function(collection, iterator, done){ |
