diff options
author | Eric Bidelman | 2012-07-11 10:43:37 -0700 |
---|---|---|
committer | Eric Bidelman | 2012-07-11 10:43:37 -0700 |
commit | f208307cbdd403d3fa92a1aae1dc9c094c7ec9d8 (patch) | |
tree | eb8ac9966f182313db6b11e12c2f4fd5bab070b7 /slide_config.js | |
parent | d78d1c5069ecdb6723a8933dbb86f4b7a20c59e9 (diff) | |
download | io-slides-remote-f208307cbdd403d3fa92a1aae1dc9c094c7ec9d8.tar.gz |
Bringing in upstream changes
Diffstat (limited to 'slide_config.js')
-rw-r--r-- | slide_config.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/slide_config.js b/slide_config.js new file mode 100644 index 0000000..1389ab3 --- /dev/null +++ b/slide_config.js | |||
@@ -0,0 +1,36 @@ | |||
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 | useBuilds: true, // Default: true. False will turn off slide animation builds. | ||
7 | usePrettify: true, // Default: true | ||
8 | enableSlideAreas: true, // Default: true. False turns off the click areas on either slide of the slides. | ||
9 | enableTouch: true, // Default: true. If touch support should enabled. Note: the device must support touch. | ||
10 | //analytics: 'UA-XXXXXXXX-1', // TODO: Using this breaks GA for some reason (probably requirejs). Update your tracking code in template.html instead. | ||
11 | favIcon: 'images/google_developers_logo_tiny.png', | ||
12 | fonts: [ | ||
13 | 'Open Sans:regular,semibold,italic,italicsemibold', | ||
14 | 'Inconsolata' | ||
15 | ], | ||
16 | //theme: ['mytheme'], // Add your own custom themes or styles in /theme/css. Leave off the .css extension. | ||
17 | }, | ||
18 | |||
19 | // Author information | ||
20 | presenters: [{ | ||
21 | name: 'Firstname Lastname', | ||
22 | company: 'Job Title, Google', | ||
23 | gplus: 'http://plus.google.com/1234567890', | ||
24 | twitter: '@yourhandle', | ||
25 | www: 'http://www.you.com', | ||
26 | github: 'http://github.com/you' | ||
27 | }/*, { | ||
28 | name: 'Second Name', | ||
29 | company: 'Job Title, Google', | ||
30 | gplus: 'http://plus.google.com/1234567890', | ||
31 | twitter: '@yourhandle', | ||
32 | www: 'http://www.you.com', | ||
33 | github: 'http://github.com/you' | ||
34 | }*/] | ||
35 | }; | ||
36 | |||