diff options
Diffstat (limited to 'slide_config.js')
-rw-r--r-- | slide_config.js | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/slide_config.js b/slide_config.js index 0d9b7c6..8cb5c2e 100644 --- a/slide_config.js +++ b/slide_config.js | |||
@@ -1,40 +1,40 @@ | |||
1 | var SLIDE_CONFIG = { | 1 | var SLIDE_CONFIG = { |
2 | // Slide settings | 2 | // Slide settings |
3 | settings: { | 3 | settings : { |
4 | title: 'Title Goes Here<br>Up To Two Lines', | 4 | title : 'Title Goes Here<br>Up To Two Lines', |
5 | subtitle: 'Subtitle Goes Here', | 5 | subtitle : 'Subtitle Goes Here', |
6 | //eventInfo: { | 6 | // eventInfo: { |
7 | // title: 'Google I/O', | 7 | // title: 'Google I/O', |
8 | // date: '6/x/2013' | 8 | // date: '6/x/2013' |
9 | //}, | 9 | // }, |
10 | useBuilds: true, // Default: true. False will turn off slide animation builds. | 10 | useBuilds : true, // Default: true. False will turn off slide |
11 | usePrettify: true, // Default: true | 11 | // animation builds. |
12 | enableSlideAreas: true, // Default: true. False turns off the click areas on either slide of the slides. | 12 | usePrettify : true, // Default: true |
13 | enableTouch: true, // Default: true. If touch support should enabled. Note: the device must support touch. | 13 | enableSlideAreas : true, // Default: true. False turns off the click |
14 | //analytics: 'UA-XXXXXXXX-1', // TODO: Using this breaks GA for some reason (probably requirejs). Update your tracking code in template.html instead. | 14 | // areas on either slide of the slides. |
15 | favIcon: 'images/google_developers_logo_tiny.png', | 15 | enableTouch : true, // Default: true. If touch support should enabled. |
16 | fonts: [ | 16 | // Note: the device must support touch. |
17 | 'Open Sans:regular,semibold,italic,italicsemibold', | 17 | // analytics: 'UA-XXXXXXXX-1', // TODO: Using this breaks GA for some |
18 | 'Source Code Pro' | 18 | // reason (probably requirejs). Update your tracking code in |
19 | ], | 19 | // template.html instead. |
20 | //theme: ['mytheme'], // Add your own custom themes or styles in /theme/css. Leave off the .css extension. | 20 | favIcon : 'images/google_developers_logo_tiny.png', |
21 | }, | 21 | fonts : [ 'Open Sans:regular,semibold,italic,italicsemibold', |
22 | 'Source Code Pro' ], | ||
23 | // theme: ['mytheme'], // Add your own custom themes or styles in | ||
24 | // /theme/css. Leave off the .css extension. | ||
25 | }, | ||
22 | 26 | ||
23 | // Author information | 27 | // Author information |
24 | presenters: [{ | 28 | presenters : [ { |
25 | name: 'Firstname Lastname', | 29 | name : 'Firstname Lastname', |
26 | company: 'Job Title<br>Google', | 30 | company : 'Job Title<br>Google', |
27 | gplus: 'http://plus.google.com/1234567890', | 31 | gplus : 'http://plus.google.com/1234567890', |
28 | twitter: '@yourhandle', | 32 | twitter : '@yourhandle', |
29 | www: 'http://www.you.com', | 33 | www : 'http://www.you.com', |
30 | github: 'http://github.com/you' | 34 | github : 'http://github.com/you' |
31 | }/*, { | 35 | } /* |
32 | name: 'Second Name', | 36 | * , { name: 'Second Name', company: 'Job Title, Google', gplus: |
33 | company: 'Job Title, Google', | 37 | * 'http://plus.google.com/1234567890', twitter: '@yourhandle', www: |
34 | gplus: 'http://plus.google.com/1234567890', | 38 | * 'http://www.you.com', github: 'http://github.com/you' } |
35 | twitter: '@yourhandle', | 39 | */] |
36 | www: 'http://www.you.com', | ||
37 | github: 'http://github.com/you' | ||
38 | }*/] | ||
39 | }; | 40 | }; |
40 | |||