angular-timer icon indicating copy to clipboard operation
angular-timer copied to clipboard

re-usable/inter-operable AngularJS timer directive ⛺

Results 101 angular-timer issues
Sort by recently updated
recently updated
newest added

I have a **ons-list** with **ng-repeat** and a refresh button that reloads all list items bringing more from server. When time reaches zero or when I add a new timer...

I'm displaying the timer value by using $scope variable. ` 00 : {{mminutes}} : {{sseconds}} ` In the above settimer is my scope variable. Whenever i come to this page...

Is there the option to have a custom visualisation of the count down? For example, I have something like the following ``` {{days}} day{{daysS}}, {{hours}} hour{{hoursS}}, {{minutes}} minute{{minutesS}} ``` I...

` $scope.reset = function () { $scope.startTime = $scope.startTimeAttr ? moment($scope.startTimeAttr) : moment(); $scope.endTime = $scope.endTimeAttr ? moment($scope.endTimeAttr) : null; $scope.countdown = angular.isNumber($scope.countdownattr) && parseInt($scope.countdownattr, 10) > 0 ? parseInt($scope.countdownattr,...

Change for the allow negative values in CountDown. Fix the issue https://github.com/siddii/angular-timer/issues/87

Hi, I've not found a way to add a dynamic(scope) value in attr countdown. Ex: or (This way throws error in parsing) To fix this I changed the module directive...

``` {{days}} days, {{hours}} hours, {{minutes}} minutes, {{seconds}} seconds, {{millis}} milliseconds. ``` The above is not working

I try to using timer-stop to my countdown, but the result is my countdown won't reset. It's only pause it. When I trigger timer-stop it continue counting down.

I have this code: ``` html {{countdown}} ``` When i console log the data on the event timer-tick, the data is not the same exactly as the countdown variable, there...

Hello all. In an app that I'm working, we use this directive to create some timer countdowns. However we detect sometimes the "countdown" feature works a bit fast than expected...