diff options
Diffstat (limited to 'slide_config.js')
-rw-r--r-- | slide_config.js | 35 |
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 @@ | |||
1 | var 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 | }; | ||