Guest User

Untitled

a guest
Apr 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @Directive({
  2. selector: '[numericControl]'
  3. })
  4. export class NumericControlDirective {
  5.  
  6. contructor(
  7. private el: ElementRef,
  8. ) {}
  9.  
  10. @HostListener('input', ['$event'])
  11. onInput(e: any) {
  12. if (e.which < 48 || e.which > 57) {
  13. e.preventDefault();
  14. }
  15. }
  16.  
  17. }
  18.  
  19. <input type="text" placeholder="Volume" numericControl />
Add Comment
Please, Sign In to add comment