-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
58 lines (53 loc) · 1.22 KB
/
app.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require.config({
"packages": [{
"name": "jquery",
"location": "bower_components/jquery",
"main": "jquery.min"
}, {
"name": "poly",
"location": "bower_components/poly",
"main": "es5"
}, {
"name": "when",
"location": "bower_components/when",
"main": "when"
}, {
"name": "revealjs",
"location": "bower_components/reveal.js",
"main": "js/reveal"
}, {
"name": "require-css",
"location": "bower_components/require-css",
"main": "css"
}, {
"name": "troopjs",
"location": "bower_components/troopjs",
"main": "maxi"
}, {
"name": "troopjs-contrib-revealjs",
"location": "bower_components/troopjs-contrib-revealjs",
"main": "main"
}, {
"name": "troopjs-slides",
"location": "."
}],
"shim": {
"revealjs": {
"exports": "Reveal"
}
},
"map": {
"*":{
"css": "require-css",
"widgets": "troopjs-slides/widgets"
}
},
"deps": [ "require", "jquery", "troopjs", "css!revealjs/lib/css/zenburn.css" ],
"callback": function (contextRequire, jQuery) {
contextRequire([ "troopjs-browser/application/widget", "troopjs-browser/ajax/service" ], function (Application, AjaxService) {
jQuery(function ($) {
Application($("html"), "bootstrap", AjaxService()).start();
});
})
}
});