2015-01-23 13:09:30 +00:00
|
|
|
|
2016-09-26 09:28:47 +00:00
|
|
|
Hedera.Users = new Class
|
2015-01-23 13:09:30 +00:00
|
|
|
({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Hedera.Form
|
2015-11-30 16:46:24 +00:00
|
|
|
|
2017-11-06 15:00:14 +00:00
|
|
|
,onChangeUserClick: function (button)
|
2015-11-30 16:46:24 +00:00
|
|
|
{
|
2017-11-06 15:00:14 +00:00
|
|
|
this.gui.supplantUser (button.value,
|
2015-11-30 16:46:24 +00:00
|
|
|
this.onUserSupplant.bind (this));
|
|
|
|
}
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2017-04-05 14:06:07 +00:00
|
|
|
,onUserSupplant: function ()
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
2017-10-20 17:09:06 +00:00
|
|
|
this.hash.setAll ({form: 'ecomerce/orders'});
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|