2
0
mirror of https://github.com/frappe/books.git synced 2024-12-25 12:10:06 +00:00
books/client/view/controls/file.js

10 lines
203 B
JavaScript
Raw Normal View History

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