diff options
author | Hakim El Hattab | 2012-08-30 01:13:25 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-08-30 01:13:25 -0400 |
commit | 0c06469d82fbc0ca2f4a2bf2d07e9e5a04cfc37f (patch) | |
tree | 522f89e763c960c23e8ae10e187e3986f4b47dff /js/reveal.js | |
parent | dc9b93a533d66834687e3360379c85e2482a1a77 (diff) |
prevent same theme from loading repeatedly
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 31b9bf1..593c32d 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -226,8 +226,12 @@ var Reveal = (function(){ dom.progress.style.display = 'block'; } + // Load the theme in the config, if it's not already loaded if( config.theme && dom.theme ) { - dom.theme.setAttribute( 'href', 'css/theme/' + config.theme + '.css' ); + var themeURL = 'css/theme/' + config.theme + '.css'; + if( dom.theme.getAttribute( 'href' ) !== themeURL ) { + dom.theme.setAttribute( 'href', themeURL ); + } } if( config.transition !== 'default' ) { |