From 228f5371234fca695e3ec6bafe4c8c52c275b99e Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 10 Jul 2015 11:50:47 +0200 Subject: [PATCH] Add ngResource and ngRoute modules in angularjs app. --- accountant/frontend/static/js/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/accountant/frontend/static/js/app.js b/accountant/frontend/static/js/app.js index 6bba7e7..ad66a35 100644 --- a/accountant/frontend/static/js/app.js +++ b/accountant/frontend/static/js/app.js @@ -15,6 +15,7 @@ along with Accountant. If not, see . */ var accountantApp = angular.module("accountantApp", [ + 'ngResource', 'ngRoute', "mgcrea.ngStrap", "highcharts-ng" ])