ngx-countdown-timer
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -41,3 +41,3 @@ import { Component, Input, NgModule } from '@angular/core'; | ||
var /** @type {?} */ day_string = (days) ? days + " " : ""; | ||
return this.twoDigit(parseInt(day_string)) + this.twoDigit(date_diff.getHours()) + | ||
return day_string + this.twoDigit(date_diff.getHours()) + | ||
":" + this.twoDigit(date_diff.getMinutes()) + ":" | ||
@@ -44,0 +44,0 @@ + this.twoDigit(date_diff.getSeconds()); |
@@ -44,3 +44,3 @@ (function (global, factory) { | ||
var /** @type {?} */ day_string = (days) ? days + " " : ""; | ||
return this.twoDigit(parseInt(day_string)) + this.twoDigit(date_diff.getHours()) + | ||
return day_string + this.twoDigit(date_diff.getHours()) + | ||
":" + this.twoDigit(date_diff.getMinutes()) + ":" | ||
@@ -47,0 +47,0 @@ + this.twoDigit(date_diff.getSeconds()); |
{ | ||
"name": "ngx-countdown-timer", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"repository": { | ||
@@ -5,0 +5,0 @@ "type": "git", |
9941