Skip to content

Commit dbf11eb

Browse files
committed
working on bower release 1.2
1 parent e7a7d83 commit dbf11eb

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"author": "Siddique Hameed",
33
"name": "angular-timer",
4-
"version": "1.0.0",
4+
"version": "1.0.2",
55
"homepage": "https://github.com/siddii/angular-timer",
66
"description": "Angular-Timer : A simple AngularJS directive demonstrating re-usability & interoperability",
77
"repository": {
@@ -11,5 +11,5 @@
1111
"dependencies": {
1212
"angular": ">= 1.0.7"
1313
},
14-
"main": "./release/angular-timer.min.js"
14+
"main": "./release"
1515
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"author": "Siddique Hameed",
33
"name": "angular-timer",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"homepage": "https://github.com/siddii/angular-timer",
66
"licenses": {
77
"type": "MIT",

release/angular-timer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ angular.module('timer', [])
1616

1717
$scope.startTime = null;
1818
$scope.timeoutId = null;
19-
$scope.countdown = $scope.countdownattr && parseInt($scope.countdownattr, 10) > 0 ? parseInt($scope.countdownattr, 10) : undefined;
19+
$scope.countdown = $scope.countdownattr && parseInt($scope.countdownattr, 10) >= 0 ? parseInt($scope.countdownattr, 10) : undefined;
2020
$scope.isRunning = false;
2121

2222
$scope.$on('timer-start', function () {

release/angular-timer.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)