mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import { Directive } from '@angular/core';
|
|
|
|
/**
|
|
* add a button on an input which deletes its value
|
|
*/
|
|
@Directive({
|
|
selector: '[framadateResettableInput]',
|
|
})
|
|
export class ResettableInputDirective {
|
|
constructor() {}
|
|
}
|