We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e0dcc7 commit 771479bCopy full SHA for 771479b
dist/angular-timer.js
@@ -160,7 +160,7 @@ var timerModule = angular.module('timer', [])
160
$scope.months = Math.floor((($scope.millis / (3600000)) / 24 / 30) % 12);
161
$scope.years = Math.floor(($scope.millis / (3600000)) / 24 / 365);
162
}
163
- // plural - singular unit decision (old syntax, for backwards compatibility and English only)
+ // plural - singular unit decision (old syntax, for backwards compatibility and English only, could be deprecated!)
164
$scope.secondsS = ($scope.seconds === 1) ? '' : 's';
165
$scope.minutesS = ($scope.minutes === 1) ? '' : 's';
166
$scope.hoursS = ($scope.hours === 1) ? '' : 's';
0 commit comments