2
0
mirror of https://github.com/frappe/books.git synced 2025-01-25 08:08:37 +00:00
2018-01-12 17:55:07 +05:30

10 lines
203 B
JavaScript

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