2
0
mirror of https://github.com/frappe/books.git synced 2025-01-25 16:18:33 +00:00

10 lines
203 B
JavaScript
Raw Normal View History

2018-01-09 19:10:56 +05:30
const BaseControl = require('./base');
class DataControl extends BaseControl {
2018-01-12 17:55:07 +05:30
make() {
super.make();
this.input.setAttribute('type', 'text');
}
2018-01-09 19:10:56 +05:30
};
module.exports = DataControl;