aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab2014-12-18 17:45:51 +0100
committerHakim El Hattab2014-12-18 17:45:51 +0100
commit7c03d6018617a3430ae10fd855467175ad17c096 (patch)
tree784c565936a53a4d372d20aad9333e1cdde68cba /js
parentc3f9aabe04660af9aad07ec47f559d52d215b742 (diff)
remove theme config option #1061
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 9681694..5690a27 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -121,9 +121,6 @@
// Focuses body when page changes visiblity to ensure keyboard shortcuts work
focusBodyOnPageVisibilityChange: true,
- // Theme (see /css/theme)
- theme: null,
-
// Transition style
transition: 'default', // none/fade/slide/convex/concave/zoom
@@ -870,18 +867,6 @@
} );
}
- // Load the theme in the config, if it's not already loaded
- if( config.theme && dom.theme ) {
- var themeURL = dom.theme.getAttribute( 'href' );
- var themeFinder = /[^\/]*?(?=\.css)/;
- var themeName = themeURL.match(themeFinder)[0];
-
- if( config.theme !== themeName ) {
- themeURL = themeURL.replace(themeFinder, config.theme);
- dom.theme.setAttribute( 'href', themeURL );
- }
- }
-
sync();
}