diff options
Diffstat (limited to 'demos/bootstrap.js')
-rw-r--r-- | demos/bootstrap.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/bootstrap.js b/demos/bootstrap.js index 7da6cb534..9a82071c7 100644 --- a/demos/bootstrap.js +++ b/demos/bootstrap.js @@ -106,7 +106,7 @@ require( modules, function() { document.documentElement.className = ""; newScript.text = "( function() { " + script.innerHTML + " } )();"; - document.head.appendChild( newScript ).parentNode.removeChild( newScript ); + document.body.appendChild( newScript ).parentNode.removeChild( newScript ); } ); } )(); |