rename js files

This commit is contained in:
Florian BLOUET
2016-02-29 15:39:24 +01:00
parent 5eec250624
commit 721307a7ca
4 changed files with 3 additions and 3 deletions

View File

@@ -38,9 +38,9 @@ gulp.task('build-common-js', function(){
config.paths.vendors + 'jquery-ui/ui/i18n/jquery.ui.datepicker-en-GB.js', config.paths.vendors + 'jquery-ui/ui/i18n/jquery.ui.datepicker-en-GB.js',
config.paths.vendors + 'jquery.cookie/jquery.cookie.js', config.paths.vendors + 'jquery.cookie/jquery.cookie.js',
config.paths.src + 'vendors/jquery-contextmenu/js/jquery.contextmenu_custom.js', config.paths.src + 'vendors/jquery-contextmenu/js/jquery.contextmenu_custom.js',
config.paths.src + 'common/js/jquery.common.js', config.paths.src + 'common/js/components/common.js',
config.paths.src + 'common/js/jquery.tooltip.js', config.paths.src + 'common/js/components/tooltip.js',
config.paths.src + 'common/js/jquery.Dialog.js' config.paths.src + 'common/js/components/dialog.js'
]; ];
return utils.buildJsGroup(commonGroup, 'common', 'common/js', debugMode); return utils.buildJsGroup(commonGroup, 'common', 'common/js', debugMode);
}); });