@@ -161,12 +161,12 @@ var timerModule = angular.module('timer', [])
161
161
$scope . monthsS = ( $scope . months === 1 ) ? '' : 's' ;
162
162
$scope . yearsS = ( $scope . years === 1 ) ? '' : 's' ;
163
163
// new plural-singular unit decision functions (for custom units and multilingual support)
164
- $scope . secondUnit = function ( singleSecond , pluralSecond ) { if ( $scope . seconds === 1 ) { return singleSecond } return pluralSecond } ;
165
- $scope . minuteUnit = function ( singleMinute , pluralMinute ) { if ( $scope . minutes === 1 ) { return singleMinute } return pluralMinute } ;
166
- $scope . hourUnit = function ( singleHour , pluralHour ) { if ( $scope . hours === 1 ) { return singleHour } return pluralHour } ;
167
- $scope . dayUnit = function ( singleDay , pluralDay ) { if ( $scope . days === 1 ) { return singleDay } return pluralDay } ;
168
- $scope . monthUnit = function ( singleMonth , pluralMonth ) { if ( $scope . months === 1 ) { return singleMonth } return pluralMonth } ;
169
- $scope . yearUnit = function ( singleYear , pluralYear ) { if ( $scope . years === 1 ) { return singleYear } return pluralYear } ;
164
+ $scope . secondUnit = function ( singleSecond , pluralSecond ) { if ( $scope . seconds === 1 ) { return singleSecond ; } return pluralSecond ; } ;
165
+ $scope . minuteUnit = function ( singleMinute , pluralMinute ) { if ( $scope . minutes === 1 ) { return singleMinute ; } return pluralMinute ; } ;
166
+ $scope . hourUnit = function ( singleHour , pluralHour ) { if ( $scope . hours === 1 ) { return singleHour ; } return pluralHour ; } ;
167
+ $scope . dayUnit = function ( singleDay , pluralDay ) { if ( $scope . days === 1 ) { return singleDay ; } return pluralDay ; } ;
168
+ $scope . monthUnit = function ( singleMonth , pluralMonth ) { if ( $scope . months === 1 ) { return singleMonth ; } return pluralMonth ; } ;
169
+ $scope . yearUnit = function ( singleYear , pluralYear ) { if ( $scope . years === 1 ) { return singleYear ; } return pluralYear ; } ;
170
170
//add leading zero if number is smaller than 10
171
171
$scope . sseconds = $scope . seconds < 10 ? '0' + $scope . seconds : $scope . seconds ;
172
172
$scope . mminutes = $scope . minutes < 10 ? '0' + $scope . minutes : $scope . minutes ;
0 commit comments