hedera-web/forms/admin/users/users.js

18 lines
269 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
Hedera.Users = new Class
({
2016-09-26 09:28:47 +00:00
Extends: Hedera.Form
,onChangeUserClick: function (button, form)
{
2017-10-20 17:09:06 +00:00
this.gui.supplantUser (form.$.name,
this.onUserSupplant.bind (this));
}
2017-04-05 14:06:07 +00:00
,onUserSupplant: function ()
{
2017-10-20 17:09:06 +00:00
this.hash.setAll ({form: 'ecomerce/orders'});
}
});