0
1
Fork 0
hedera-web-mindshore/package/usr/share/hedera-web/modules/agencies/agencies.js

17 lines
246 B
JavaScript
Raw Normal View History

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;
}
});