mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
11 lines
241 B
JavaScript
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;
|