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 21f1d51 commit 7e0dcc7Copy full SHA for 7e0dcc7
app/js/timer.js
@@ -153,7 +153,7 @@ var timerModule = angular.module('timer', [])
153
$scope.months = Math.floor((($scope.millis / (3600000)) / 24 / 30) % 12);
154
$scope.years = Math.floor(($scope.millis / (3600000)) / 24 / 365);
155
}
156
- // 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!)
157
$scope.secondsS = ($scope.seconds === 1) ? '' : 's';
158
$scope.minutesS = ($scope.minutes === 1) ? '' : 's';
159
$scope.hoursS = ($scope.hours === 1) ? '' : 's';
0 commit comments