You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
399 B
22 lines
399 B
requirejs.config({ |
|
baseUrl: 'js/', |
|
|
|
paths: { |
|
jquery: 'libs/jquery-1.11.1.min', |
|
'jquery.cookie': 'lib/jquery.cookie-1.4.0', |
|
underscore: 'lib/underscore-1.6.0', |
|
fiber: 'libs/fiber.min' |
|
}, |
|
|
|
shim: { |
|
'jquery.cookie': { |
|
deps: ['jquery'] |
|
} |
|
} |
|
}); |
|
|
|
|
|
require(['controllers/keysController'], |
|
function (KeysController) { |
|
var controller = new KeysController(); |
|
}); |