-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathslide_config.js
More file actions
34 lines (32 loc) · 1.11 KB
/
Copy pathslide_config.js
File metadata and controls
34 lines (32 loc) · 1.11 KB
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
var SLIDE_CONFIG = {
// Slide settings
settings: {
title: 'Event Title',
subtitle: 'Short event description',
eventTitle: 'CampusHash Events',
useBuilds: true, // Default: true. False will turn off slide animation builds.
usePrettify: true, // Default: true
enableSlideAreas: true, // Default: true. False turns off the click areas on either slide of the slides.
enableTouch: true, // Default: true. If touch support should enabled. Note: the device must support touch.
favIcon: 'images/campushash_logo_tiny.png',
fonts: [
'Open Sans:regular,semibold,italic,italicsemibold',
'Source Code Pro'
],
//theme: ['mytheme'], // Add your own custom themes or styles in /theme/css. Leave off the .css extension.
},
// Author information
presenters: [{
name: 'John Doe',
company: 'Speaker, CampusHash',
twitter: '@yourhandle',
www: 'http://www.you.com',
github: 'http://github.com/you'
}/*, {
name: 'John Doe',
company: 'Speaker, CampusHash',
twitter: '@yourhandle',
www: 'http://www.you.com',
github: 'http://github.com/you'
}*/]
};