15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
|
|
export default class Controller extends Section {
|
|
preview(shelving) {
|
|
this.selectedShelving = shelving;
|
|
this.$.summary.show();
|
|
}
|
|
}
|
|
|
|
ngModule.vnComponent('vnShelvingIndex', {
|
|
template: require('./index.html'),
|
|
controller: Controller
|
|
});
|