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;
|