2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/client/view/controls/data.js

10 lines
203 B
JavaScript
Raw Normal View History

2018-01-09 13:40:56 +00:00
const BaseControl = require('./base');
class DataControl extends BaseControl {
2018-01-12 12:25:07 +00:00
make() {
super.make();
this.input.setAttribute('type', 'text');
}
2018-01-09 13:40:56 +00:00
};
module.exports = DataControl;