2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/client/view/controls/password.js
2018-02-02 14:51:20 +05:30

10 lines
215 B
JavaScript

const BaseControl = require('./base');
class PasswordControl extends BaseControl {
make() {
super.make();
this.input.setAttribute('type', 'password');
}
};
module.exports = PasswordControl;