From 27e3f693c4b2db6b104866943cba4dcf31d7952b Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 23 Dec 2016 14:34:22 +0800 Subject: [PATCH] ux/FlipCounter.js --- ux/FlipCounter.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ux/FlipCounter.js b/ux/FlipCounter.js index 5626b56afd..bbd1c1db30 100644 --- a/ux/FlipCounter.js +++ b/ux/FlipCounter.js @@ -210,7 +210,7 @@ Roo.extend(Roo.ux.FlipCounter.Digit, Roo.bootstrap.Component, { { cls : 'flipper_top flipper_top2 flipper_top_back', cn : [ - { tag: 'span', html: this.currentNumber }, + { tag: 'span', html: ""+this.currentNumber }, { cls : 'rings' } ] @@ -218,7 +218,7 @@ Roo.extend(Roo.ux.FlipCounter.Digit, Roo.bootstrap.Component, { { cls : 'flipper_top flipper_top_front', cn : [ - { tag: 'span', html: this.currentNumber }, + { tag: 'span', html: ""+this.currentNumber }, { cls : 'rings' } ] @@ -229,14 +229,14 @@ Roo.extend(Roo.ux.FlipCounter.Digit, Roo.bootstrap.Component, { { cls : 'flipper_bottom flipper_bottom1 flipper_bottom_back', cn : [ - { tag: 'span', html: this.currentNumber }, + { tag: 'span', html: ""+this.currentNumber }, { cls : 'rings' } ] }, { cls : 'flipper_bottom flipper_bottom_front', cn : [ - { tag: 'span', html: this.currentNumber }, + { tag: 'span', html: ""+this.currentNumber }, { cls : 'rings' } ] }, -- 2.39.2