From 3445595a3f2416e06f64b6f7c577329ea3e16da5 Mon Sep 17 00:00:00 2001 From: jordanrinke Date: Mon, 17 Nov 2014 12:46:49 -0800 Subject: [PATCH 1/2] Add missing ngRoute Add missing ngRoute --- app/plugins/terms/terms.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/plugins/terms/terms.coffee b/app/plugins/terms/terms.coffee index ef4fa4d2..512445ad 100644 --- a/app/plugins/terms/terms.coffee +++ b/app/plugins/terms/terms.coffee @@ -21,7 +21,7 @@ taiga = @.taiga -module = angular.module("taigaPlugins") +module = angular.module("taigaPlugins", ["ngRoute"]) template = _.template("""

From 4d34a30a0f9f89fa870ba3fb934b55d2f1ac4346 Mon Sep 17 00:00:00 2001 From: jordanrinke Date: Mon, 17 Nov 2014 12:47:12 -0800 Subject: [PATCH 2/2] add missing ngRoute add missing ngRoute --- app/plugins/humanshtml/humanshtml.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/plugins/humanshtml/humanshtml.coffee b/app/plugins/humanshtml/humanshtml.coffee index 59130f8a..0cf8312d 100644 --- a/app/plugins/humanshtml/humanshtml.coffee +++ b/app/plugins/humanshtml/humanshtml.coffee @@ -23,7 +23,7 @@ # and add additional template. taiga = @.taiga -module = angular.module("taigaPlugins") +module = angular.module("taigaPlugins", ["ngRoute"]) configure = ($routeProvider) -> $routeProvider.when("/humans.html", {"templateUrl": "/plugins/humanshtml/templates/humans.html"})