funky-framadate-front/src/app/ui/directives/resettable-input.directive.ts

15 lines
231 B
TypeScript
Raw Normal View History

2020-01-16 12:00:39 +01:00
import {Directive} from '@angular/core';
/**
* add a button on an input which deletes its value
*/
2020-01-16 12:00:39 +01:00
@Directive({
selector: '[framadateResettableInput]'
})
export class ResettableInputDirective {
constructor() {
}
}