forked from verdnatura/hedera-web
15 lines
237 B
JavaScript
15 lines
237 B
JavaScript
|
import './style.scss';
|
||
|
|
||
|
export default new Class({
|
||
|
Extends: Hedera.Form,
|
||
|
Template: require('./ui.xml'),
|
||
|
|
||
|
onShowClick: function(column, agencyId) {
|
||
|
this.hash.setAll({
|
||
|
form: 'agencies/provinces',
|
||
|
agency: agencyId
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|