UNPKG

ng2-bootstrap-base-modified

Version:

Native Angular Bootstrap Components Typeahead modified

24 lines (19 loc) 517 B
import { Component } from '@angular/core'; @Component({ selector: 'demo-rating-dynamic', templateUrl: './dynamic.html' }) export class DemoRatingDynamicComponent { public max:number = 10; public rate:number = 7; public isReadonly:boolean = false; public overStar:number; public percent:number; public hoveringOver(value:number):void { this.overStar = value; this.percent = 100 * (value / this.max); }; public resetStar():void { this.overStar = void 0; } }