From 6505b2a180602718c004221f1ed68923df96f6bb Mon Sep 17 00:00:00 2001 From: Enrico Risa Date: Tue, 1 Oct 2013 19:15:54 +0200 Subject: [PATCH] fixed Issue #6 --- app/scripts/controllers/login-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/controllers/login-controller.js b/app/scripts/controllers/login-controller.js index dee5ee7237d..7d17afda025 100644 --- a/app/scripts/controllers/login-controller.js +++ b/app/scripts/controllers/login-controller.js @@ -32,7 +32,7 @@ angular.module('login.controller', ['database.services']).controller("LoginContr modalScope.hide(); }); } - var modalPromise = $modal({template: '/views/database/newDatabase.html', scope: modalScope}); + var modalPromise = $modal({template: 'views/database/newDatabase.html', scope: modalScope}); $q.when(modalPromise).then(function (modalEl) { modalEl.modal('show'); });