DefinitelyTyped/types/makeup-floating-label/makeup-floating-label-tests.ts
2018-10-30 13:39:36 +01:00

10 lines
225 B
TypeScript

import FloatingLabel = require('makeup-floating-label');
const widgetEls = document.querySelectorAll('.floating-label');
widgetEls.forEach((el: Element) => {
const widget = new FloatingLabel(el);
widget.refresh();
});