mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 20:13:28 +00:00
Add global register feature
Tweak admin field app Fix typo Tweaks Fix typo
This commit is contained in:

committed by
Romain Neutron

parent
9a9235a15e
commit
0539db7598
@@ -1,25 +1,27 @@
|
||||
// configure AMD loading
|
||||
require.config({
|
||||
baseUrl: "/scripts",
|
||||
paths: {
|
||||
jquery: '../include/minify/f=include/jslibs/jquery-1.7.1',
|
||||
jqueryui: '../include/jslibs/jquery-ui-1.8.17/js/jquery-ui-1.8.17.custom.min',
|
||||
underscore: '../assets/underscore-amd/underscore',
|
||||
backbone: '../assets/backbone-amd/backbone',
|
||||
twig: '../assets/twig/twig',
|
||||
i18n: '../assets/i18n/i18next.amd',
|
||||
bootstrap: '../skins/html5/bootstrap/js/bootstrap.min'
|
||||
jquery: "../include/minify/f=include/jslibs/jquery-1.7.1",
|
||||
jqueryui: "../include/jslibs/jquery-ui-1.8.17/js/jquery-ui-1.8.17.custom.min",
|
||||
underscore: "../assets/underscore-amd/underscore",
|
||||
backbone: "../assets/backbone-amd/backbone",
|
||||
twig: "../assets/twig/twig",
|
||||
i18n: "../assets/i18n/i18next.amd",
|
||||
bootstrap: "../skins/html5/bootstrap/js/bootstrap.min"
|
||||
},
|
||||
shim: {
|
||||
twig: {
|
||||
exports: 'Twig'
|
||||
exports: "Twig"
|
||||
},
|
||||
bootstrap : ['jquery'],
|
||||
bootstrap : ["jquery"],
|
||||
jqueryui: {
|
||||
deps: [ 'jquery' ]
|
||||
deps: [ "jquery" ]
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
require(['apps/admin/fields/app'], function(App) {
|
||||
// launch application
|
||||
require(["apps/admin/fields/app"], function(App) {
|
||||
App.initialize();
|
||||
});
|
||||
|
Reference in New Issue
Block a user