Commit 410a64d5 by Johannes Stelzer

remove preceeding slash from journal path

parent f08744d9
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
'use strict'; 'use strict';
module.exports = function ($scope, $http) { module.exports = function ($scope, $http) {
$http.get('/api/journal').success(function(journal) { $http.get('api/journal').success(function(journal) {
$scope.journal = journal; $scope.journal = journal;
}).error(function(error) { }).error(function(error) {
$scope.error = error; $scope.error = error;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment