Skip to content

Commit a8cf1f2

Browse files
committed
adding support for exporting variables
1 parent a707eba commit a8cf1f2

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

app/js/_timer.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,19 @@ var timerModule = angular.module('timer', [])
1212
autoStart: '&autoStart',
1313
language: '@?',
1414
fallback: '@?',
15-
maxTimeUnit: '='
15+
maxTimeUnit: '=',
16+
seconds: '=?',
17+
minutes: '=?',
18+
hours: '=?',
19+
days: '=?',
20+
months: '=?',
21+
years: '=?',
22+
secondsS: '=?',
23+
minutesS: '=?',
24+
hoursS: '=?',
25+
daysS: '=?',
26+
monthsS: '=?',
27+
yearsS: '=?'
1628
},
1729
controller: ['$scope', '$element', '$attrs', '$timeout', 'I18nService', '$interpolate', 'progressBarService', function ($scope, $element, $attrs, $timeout, I18nService, $interpolate, progressBarService) {
1830

0 commit comments

Comments
 (0)