Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. @Component({
  2. selector: 'trimmed-input'
  3. })
  4. class TrimmedInput {
  5. @HostBinding() value: string;
  6. @HostListener("input", "$event.target.value")
  7. onChange(updatedValue: string) {
  8. this.value = updatedValue.trim();
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement