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