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

18 lines
264 B
JavaScript

Hedera.Users = new Class
({
Extends: Hedera.Form
,onChangeUserClick: function (button)
{
this.gui.supplantUser (button.value,
this.onUserSupplant.bind (this));
}
,onUserSupplant: function ()
{
this.hash.setAll ({form: 'ecomerce/orders'});
}
});