forked from adaptlearning/adapt_framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
27 lines (27 loc) · 714 Bytes
/
config.js
File metadata and controls
27 lines (27 loc) · 714 Bytes
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
require.config({
paths: {
jquery: 'empty:',
underscore: 'empty:',
backbone: 'empty:',
modernizr: 'empty:',
handlebars: 'empty:',
velocity: 'empty:',
imageReady: 'empty:',
inview: 'empty:',
a11y: 'empty:',
scrollTo: 'empty:',
libraries: 'empty:',
bowser: 'empty:',
'core/js/libraries/bowser': 'empty:',
'coreJS/libraries/bowser': 'empty:'
},
map: {
'*': {
coreJS: 'core/js',
coreViews: 'core/js/views',
coreModels: 'core/js/models',
coreCollections: 'core/js/collections',
coreHelpers: 'core/js/helpers'
}
}
});