Commit 7cd44d55771ed9a584614938132e63487e399abc

Authored by Chantsova Ekaterina
1 parent 8e6bd7ae

Digital gauge: fix data displaying in mobile browser

@@ -397,7 +397,7 @@ export default class TbCanvasDigitalGauge { @@ -397,7 +397,7 @@ export default class TbCanvasDigitalGauge {
397 } 397 }
398 var value = tvPair[1]; 398 var value = tvPair[1];
399 if(value !== this.gauge.value) { 399 if(value !== this.gauge.value) {
400 - if (!this.ctx.settings.animation) { 400 + if (!this.ctx.settings.animation || this.ctx.isMobile) {
401 this.gauge._value = value; 401 this.gauge._value = value;
402 } 402 }
403 this.gauge.value = value; 403 this.gauge.value = value;