aboutsummaryrefslogtreecommitdiff
path: root/slide_config.js
blob: eab9ff846882d77cea16ca95fe29a21b53664947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
var SLIDE_CONFIG = {
  // Slide settings
  settings: {
    title: 'Title Goes Here<br>Up To Two Lines',
    subtitle: 'Subtitle Goes Here',
    //theme: ['mytheme'],
    //hashtag: '#html5', //TODO
    useBuilds: true, // Default: true
    usePrettify: true, // Default: true
    enableSideAreas: true, // Default: true
    enableTouch: true, // Default: true if device supports touch.
    //enableSpeakerNotes: true, // Default: false
    analytics: 'UA-XXXXXXXX-1',
    favIcon: 'http://bleedinghtml5.appspot.com/images/chrome-logo-tiny2.png',
    onLoad: null, // TODO. function to call onload
    fonts: [
      'Open Sans:regular,semibold,italic,italicsemibold',
      'Inconsolata'
    ]
  },

  // Author information
  presenters: [{
    name: 'Firstname Lastname',
    company: 'Job Title, Google',
    gplus: 'http://plus.google.com/1234567890',
    twitter: '@yourhandle',
    www: 'http://www.you.com'
  }/*, {
    name: 'Eric Bidelman',
    gplus: 'http://plus.ericbidelman.com',
    company: 'Senior Developer Programs Engineer, Google Chrome',
    twitter: '@ebidel',
    www: 'http://www.ericbidelman.com'
  }*/]
};