aboutsummaryrefslogtreecommitdiff
path: root/js/slides.js
blob: 3482287e0d318c480bf76c61e8d0062fa0fa55bf (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
require.config({
	paths : {
		'slide_config' : '../slide_config',
		'slide-controller' : 'slide-controller',
		'slide-deck' : 'slide-deck',

		'modernizr' : 'modernizr.custom.56571',
		'prettify' : 'prettify/prettify',
		'hammer' : 'hammer.min',

		'humane' : 'humane/humane.min',
		'humane-themed' : 'humane/humane-themed',

		'analytics' : 'https://www.google-analytics.com/ga',
	},

	shim : {
		'slide-deck' : {
			deps : ['slide_config', 'slide-controller', 'modernizr'],
		},
	},
});

require(['slide-deck']);