mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 04:23:19 +00:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2013 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
// configure AMD loading
|
|
require.config({
|
|
baseUrl: "/scripts",
|
|
paths: {
|
|
jquery: "../assets/jquery/jquery",
|
|
jqueryui: "../include/jslibs/jquery-ui-1.10.3.min",
|
|
underscore: "../assets/underscore-amd/underscore",
|
|
backbone: "../assets/backbone-amd/backbone",
|
|
i18n: "../assets/i18next/release/i18next.amd-1.6.2.min",
|
|
bootstrap: "../skins/build/bootstrap/js/bootstrap.min",
|
|
multiselect: "../assets/bootstrap-multiselect/js/bootstrap-multiselect",
|
|
"jquery.geocompleter": "../assets/geonames-server-jquery-plugin/jquery.geonames"
|
|
},
|
|
shim: {
|
|
bootstrap : ["jquery"],
|
|
jqueryui: {
|
|
deps: ["jquery"]
|
|
},
|
|
"jquery.geocompleter" : {
|
|
deps: ['jquery'],
|
|
exports: 'jQuery.fn.geocompleter'
|
|
},
|
|
multiselect: {
|
|
deps: ["jquery", "bootstrap"]
|
|
}
|
|
}
|
|
});
|