2
0
mirror of https://github.com/frappe/books.git synced 2025-01-28 01:28:28 +00:00

11 lines
241 B
JavaScript

const BaseControl = require('./base');
class FloatControl extends BaseControl {
make() {
super.make();
this.input.setAttribute('type', 'text');
this.input.classList.add('text-right');
}
};
module.exports = FloatControl;