From 266f330936c55cca76ee5356a0f91542249f3d34 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lievremont Date: Mon, 1 Sep 2014 10:29:39 +0200 Subject: [PATCH] Move latinize.js to 3rd party libraries --- server/sonar-web/Gruntfile.coffee | 4 ++-- server/sonar-web/src/main/js/{ => third-party}/latinize.js | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename server/sonar-web/src/main/js/{ => third-party}/latinize.js (100%) diff --git a/server/sonar-web/Gruntfile.coffee b/server/sonar-web/Gruntfile.coffee index 88e35c0930a..5cef7cbd1dc 100644 --- a/server/sonar-web/Gruntfile.coffee +++ b/server/sonar-web/Gruntfile.coffee @@ -78,6 +78,7 @@ module.exports = (grunt) -> '<%= pkg.assets %>js/third-party/jquery.js' '<%= pkg.assets %>js/third-party/jquery-ui.js' '<%= pkg.assets %>js/third-party/d3.js' + '<%= pkg.assets %>js/third-party/latinize.js' '<%= pkg.assets %>js/third-party/underscore.js' '<%= pkg.assets %>js/third-party/select2.js' '<%= pkg.assets %>js/third-party/keymaster.js' @@ -102,7 +103,6 @@ module.exports = (grunt) -> '<%= pkg.assets %>js/resource.js' '<%= pkg.assets %>js/issue.js' '<%= pkg.assets %>js/recent-history.js' - '<%= pkg.assets %>js/latinize.js' ] build: files: @@ -111,6 +111,7 @@ module.exports = (grunt) -> '<%= pkg.assets %>js/third-party/jquery.js' '<%= pkg.assets %>js/third-party/jquery-ui.js' '<%= pkg.assets %>js/third-party/d3.js' + '<%= pkg.assets %>js/third-party/latinize.js' '<%= pkg.assets %>js/third-party/underscore.js' '<%= pkg.assets %>js/third-party/select2.js' '<%= pkg.assets %>js/third-party/keymaster.js' @@ -135,7 +136,6 @@ module.exports = (grunt) -> '<%= pkg.assets %>js/resource.js' '<%= pkg.assets %>js/issue.js' '<%= pkg.assets %>js/recent-history.js' - '<%= pkg.assets %>js/latinize.js' ] diff --git a/server/sonar-web/src/main/js/latinize.js b/server/sonar-web/src/main/js/third-party/latinize.js similarity index 100% rename from server/sonar-web/src/main/js/latinize.js rename to server/sonar-web/src/main/js/third-party/latinize.js -- 2.39.5