fruitstand
Version:
20 lines • 560 B
JavaScript
angular.module('myApp', []).
value('start', 200).
controller('Counter', ['$scope', 'start',
function($scope, start) {
$scope.start = start;
$scope.current = start;
$scope.difference = 0;
$scope.change = 1;
$scope.inc = function() {
$scope.current += $scope.change;
$scope.calcDiff();
};
$scope.dec = function() {
$scope.current -= $scope.change;
$scope.calcDiff();
};
$scope.calcDiff = function() {
$scope.difference = $scope.current - $scope.start;
};
}]);