diff options
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 3e9b160..a1ae5e4 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -191,9 +191,15 @@ var Reveal = (function(){ // Force a layout when the whole page, incl fonts, has loaded window.addEventListener( 'load', layout, false ); + var query = Reveal.getQueryHash(); + + // Do not accept new dependencies via query config to avoid + // the potential of malicious script injection + if( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies']; + // Copy options over to our config object extend( config, options ); - extend( config, Reveal.getQueryHash() ); + extend( config, query ); // Hide the address bar in mobile browsers hideAddressBar(); |