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

18 lines
264 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
2017-11-06 15:00:14 +00:00
,onChangeUserClick: function (button)
{
2017-11-06 15:00:14 +00:00
this.gui.supplantUser (button.value,
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'});
}
});