forked from verdnatura/hedera-web
17 lines
246 B
JavaScript
17 lines
246 B
JavaScript
|
|
||
|
Vn.Agencies = new Class
|
||
|
({
|
||
|
Extends: Vn.Module
|
||
|
|
||
|
,activate: function ()
|
||
|
{
|
||
|
this.get ('column-show').on ('clicked', this.onShowClick, this);
|
||
|
}
|
||
|
|
||
|
,onShowClick: function (column, agencyId)
|
||
|
{
|
||
|
this.get ('agency-id').value = agencyId;
|
||
|
}
|
||
|
});
|
||
|
|