forked from verdnatura/hedera-web
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
import './style.scss';
|
|
|
|
export default new Class({
|
|
Extends: Hedera.Form,
|
|
Template: require('./ui.xml'),
|
|
|
|
activate() {
|
|
this.$.userModel.setInfo('c', 'myClient', 'hedera');
|
|
this.$.userModel.setInfo('u', 'myUser', 'account');
|
|
this.$.changePassword.conn = this.conn
|
|
this.$.changePassword.user = this.gui.user
|
|
}
|
|
}); |