funky-framadate-front/mocks/old-stuff/ui/directives/resettable-input.directive.ts

12 lines
221 B
TypeScript
Raw Normal View History

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