angular-timer icon indicating copy to clipboard operation
angular-timer copied to clipboard

Is it support angular2 & 4 version for dynamic value support?

Open MohamedSahir opened this issue 8 years ago • 0 comments

I have an angular4 component when the page loads it shows the total visitors count increasing on the page. How to communicate dynamic pass by using this plugin app.component.ts import { Component ,OnInit} from '@angular/core'; declare var $:any; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements OnInit{ totalvisitors = 1000; // dynamic value dayvisitors = 10; // dynamic value }

Else it is only support for angular1

MohamedSahir avatar Nov 23 '17 06:11 MohamedSahir