Fix angular style issues.

This commit is contained in:
Alexis Lahouze 2016-10-14 08:19:58 +02:00
parent e91bf14298
commit 4aed242a48
1 changed files with 6 additions and 6 deletions

View File

@ -56,8 +56,8 @@ angular.module('accountant.accounts', [
return Account;
})
.controller('AccountController', function($scope, $ngBootbox, Account, Notification) {
var vm=this;
.controller('AccountController', function($ngBootbox, Account, Notification) {
var vm = this;
/*
* Return the class for an account current value compared to authorized
@ -103,7 +103,7 @@ angular.module('accountant.accounts', [
});
// Insert account at the begining of the array.
$scope.accounts.splice(0, 0, account);
vm.accounts.splice(0, 0, account);
};
/*
@ -114,7 +114,7 @@ angular.module('accountant.accounts', [
rowform.$cancel();
} else {
// Account not saved, just remove it from array.
$scope.accounts.splice($index, 1);
vm.accounts.splice($index, 1);
}
};
@ -122,7 +122,7 @@ angular.module('accountant.accounts', [
* Save account.
*/
vm.save = function(account) {
// var account = $scope.accounts[$index];
// var account = vm.accounts[$index];
// account = angular.merge(account, $data);
@ -149,7 +149,7 @@ angular.module('accountant.accounts', [
Notification.success('Account #' + id + ' deleted.');
// Remove account from array.
$scope.accounts.splice($index, 1);
vm.accounts.splice($index, 1);
});
}
}