17 lines
242 B
JavaScript
17 lines
242 B
JavaScript
|
|
||
|
Vn.Access = new Class
|
||
|
({
|
||
|
Extends: Vn.Module
|
||
|
|
||
|
,activate: function ()
|
||
|
{
|
||
|
// this.get ('return').on ('clicked', this.returnClicked.bind (this));
|
||
|
}
|
||
|
|
||
|
,returnClicked: function (column, value)
|
||
|
{
|
||
|
this.hash.set ({'module': 'users'});
|
||
|
}
|
||
|
});
|
||
|
|