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

10 lines
203 B
JavaScript
Raw Normal View History

2018-03-30 00:21:24 +05:30
const BaseControl = require('./base');
class FileControl extends BaseControl {
make() {
super.make();
this.input.setAttribute('type', 'file');
}
};
module.exports = FileControl;