Hello
I need to use this example for ionic 2
Thanks.
Hello
I need to use this example for ionic 2
Thanks.
You’re best bet is to look into observables and create something based around that.
Thanks for replaying.
But I can not include javascript files moment and svg?
How to do it.
import { TimerObservable } from 'rxjs/observable/TimerObservable';
...
private tick: number;
...
constructor() {
let timer = TimerObservable.create(2000, 1000).subscribe(t => { this.tick = t; });
}
...
and in template html ...
{{tick}}