diff options
author | Eric Bidelman | 2012-04-09 15:48:31 -0700 |
---|---|---|
committer | Eric Bidelman | 2012-04-09 15:48:31 -0700 |
commit | deed0d152700805b8ac4d7f9071b51a6b53491ac (patch) | |
tree | ef1118dc80ae364a04bcd280937d4d3e09ac211a | |
parent | faef1db645917c394fc9584cb82d14e168bcb36f (diff) | |
download | io-slides-remote-deed0d152700805b8ac4d7f9071b51a6b53491ac.tar.gz |
Fix for builds setting
-rw-r--r-- | js/slides.js | 2 | ||||
-rw-r--r-- | template.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/js/slides.js b/js/slides.js index 4f88a96..c28300c 100644 --- a/js/slides.js +++ b/js/slides.js | |||
@@ -174,7 +174,7 @@ SlideDeck.prototype.loadConfig_ = function() { | |||
174 | this.addFonts_(settings.fonts); | 174 | this.addFonts_(settings.fonts); |
175 | } | 175 | } |
176 | 176 | ||
177 | if (settings.useBuilds || true) { | 177 | if (!!!('useBuilds' in settings) || settings.useBuilds) { |
178 | this.makeBuildLists_(); | 178 | this.makeBuildLists_(); |
179 | } | 179 | } |
180 | }; | 180 | }; |
diff --git a/template.html b/template.html index 880ea7b..1339ee9 100644 --- a/template.html +++ b/template.html | |||
@@ -206,7 +206,7 @@ function helloWorld(world) { | |||
206 | useBuilds: true, | 206 | useBuilds: true, |
207 | usePrettify: true, | 207 | usePrettify: true, |
208 | enableSideAreas: true, //TODO | 208 | enableSideAreas: true, //TODO |
209 | analytics: 'UA-25678279-1', | 209 | analytics: 'UA-XXXXXXXX-1', |
210 | favIcon: 'http://bleedinghtml5.appspot.com/images/chrome-logo-tiny2.png', | 210 | favIcon: 'http://bleedinghtml5.appspot.com/images/chrome-logo-tiny2.png', |
211 | onLoad: null, // TODO. function to call onload | 211 | onLoad: null, // TODO. function to call onload |
212 | fonts: [ | 212 | fonts: [ |