From 4d34a30a0f9f89fa870ba3fb934b55d2f1ac4346 Mon Sep 17 00:00:00 2001 From: jordanrinke Date: Mon, 17 Nov 2014 12:47:12 -0800 Subject: [PATCH] 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"})