forked from verdnatura/hedera-web
26 lines
432 B
JavaScript
26 lines
432 B
JavaScript
|
|
Hedera.Users = new Class
|
|
({
|
|
Extends: Hedera.Form
|
|
|
|
,repeaterFunc: function (res, form)
|
|
{
|
|
res.$('link').href = this.hash.make ({
|
|
'form': 'admin/access-log',
|
|
'user': form.get ('id')
|
|
});
|
|
}
|
|
|
|
,onChangeUserClick: function (button, form)
|
|
{
|
|
this.gui.supplantUser (form.get ('name'),
|
|
this.onUserSupplant.bind (this));
|
|
}
|
|
|
|
,onUserSupplant: function (userName)
|
|
{
|
|
this.hash.set ({'form': 'ecomerce/orders'});
|
|
}
|
|
});
|
|
|