diff options
author | Eric Bidelman | 2012-04-21 16:23:05 -0700 |
---|---|---|
committer | Eric Bidelman | 2012-04-21 16:23:05 -0700 |
commit | affc97dbb1c92ae4b6b9c8baf99a0384f806471e (patch) | |
tree | 673d96e1ce183e8fd8fdf136f7ba1b9c19a63cf5 /slide_config.json | |
parent | 270d954981b250e62db9734898c66c50dade512f (diff) | |
download | io-slides-remote-affc97dbb1c92ae4b6b9c8baf99a0384f806471e.tar.gz |
.js to .json
Diffstat (limited to 'slide_config.json')
-rw-r--r-- | slide_config.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/slide_config.json b/slide_config.json new file mode 100644 index 0000000..9a4a4e3 --- /dev/null +++ b/slide_config.json | |||
@@ -0,0 +1,42 @@ | |||
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, // Default: true | ||
9 | usePrettify: true, // Default: true | ||
10 | enableSideAreas: true, // Default: true | ||
11 | enableTouch: true, // Default: true if device supports touch. | ||
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 | }; | ||
36 | |||
37 | // SPEAKER MODE ---------------------------------------------------------------- | ||
38 | // To turn on the presenter mode (popup), add the presentme=true parameter: | ||
39 | // http://localhost/io-2012-slides/template.html?presentme=true | ||
40 | // | ||
41 | // To disable presenter mode, set presentme=false: | ||
42 | // http://localhost/io-2012-slides/template.html?presentme=false | ||