Fixed or disabled warnings

This commit is contained in:
baldo 2017-05-06 17:31:34 +02:00
parent 94a51921fd
commit 3d6fb5feec
11 changed files with 45 additions and 38 deletions
app/scripts/directives

View file

@ -5,7 +5,7 @@ angular.module('ffffng')
var ctrl = function ($scope) {
$scope.version = '?';
$http.get('/api/version')
.then(function (result) { $scope.version = result.data.version; })
.then(function (result) { $scope.version = result.data.version; });
};
return {