aboutsummaryrefslogtreecommitdiff
path: root/slide_config.js
diff options
context:
space:
mode:
authorEric Bidelman2012-04-14 18:43:06 -0700
committerEric Bidelman2012-04-14 18:43:06 -0700
commit04153b7c8a3332c8008408227f6d71b8ef392c35 (patch)
treee509dace2cc9e441b7bd8f5793d422823c86de74 /slide_config.js
parent7054806c29c3eae0ed4b4176047b92bddcdcd0cc (diff)
downloadio-slides-remote-04153b7c8a3332c8008408227f6d71b8ef392c35.tar.gz
Moving slide config to its own file. eval is bad
Diffstat (limited to 'slide_config.js')
-rw-r--r--slide_config.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/slide_config.js b/slide_config.js
new file mode 100644
index 0000000..e8ff552
--- /dev/null
+++ b/slide_config.js
@@ -0,0 +1,35 @@
1var SLIDE_CONFIG = {
2 // Slide settings
3 settings: {
4 title: 'Title Goes Here<br>Up To Two Lines',
5 subtitle: 'Subtitle Goes Here',
6 //theme: ['mytheme'],
7 hashtag: '#html5', //TODO
8 useBuilds: true,
9 usePrettify: true,
10 enableSideAreas: true,
11 enableTouch: true, // TODO: base this on media query instead.
12 analytics: 'UA-XXXXXXXX-1',
13 favIcon: 'http://bleedinghtml5.appspot.com/images/chrome-logo-tiny2.png',
14 onLoad: null, // TODO. function to call onload
15 fonts: [
16 'Open Sans:regular,semibold,italic,italicsemibold',
17 'Inconsolata'
18 ]
19 },
20
21 // Author information
22 presenters: [{
23 name: 'Firstname Lastname',
24 company: 'Job Title, Google',
25 gplus: 'http://plus.google.com/1234567890',
26 twitter: '@yourhandle',
27 www: 'http://www.you.com'
28 }/*, {
29 name: 'Eric Bidelman',
30 gplus: 'http://plus.ericbidelman.com',
31 company: 'Senior Developer Programs Engineer, Google Chrome',
32 twitter: '@ebidel',
33 www: 'http://www.ericbidelman.com'
34 }*/]
35};