Repository: struts Updated Branches: refs/heads/master d0a25d688 -> 4969750f3
WW-4522 Support latest stable AngularJS version in maven angularjs archetype - Add missing semicolon Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/f200a84a Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/f200a84a Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/f200a84a Branch: refs/heads/master Commit: f200a84a8afebc66670a510e2855fe7406613a4a Parents: d0a25d6 Author: Johannes Geppert <[email protected]> Authored: Sat Jul 11 10:34:54 2015 +0200 Committer: Johannes Geppert <[email protected]> Committed: Sat Jul 11 10:34:54 2015 +0200 ---------------------------------------------------------------------- .../src/main/webapp/js/controllers/ApacheProjectsController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/f200a84a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/controllers/ApacheProjectsController.js ---------------------------------------------------------------------- diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/controllers/ApacheProjectsController.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/controllers/ApacheProjectsController.js index 0d05615..096e3da 100644 --- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/controllers/ApacheProjectsController.js +++ b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/controllers/ApacheProjectsController.js @@ -30,7 +30,7 @@ DataService.getProjects().then(function(data) { $scope.projects = data.projectNames; }, function() { - $log.error('Could not receive project names.') + $log.error('Could not receive project names.'); }); };
