2018-05-23 12:26:51 +00:00
|
|
|
import ngModule from '../../module';
|
2020-03-17 10:17:50 +00:00
|
|
|
import Section from 'salix/components/section';
|
2019-10-01 14:17:57 +00:00
|
|
|
import './style.scss';
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2020-03-17 10:17:50 +00:00
|
|
|
export default class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
2019-01-31 13:14:39 +00:00
|
|
|
this.filter = {
|
|
|
|
order: 'created DESC',
|
|
|
|
};
|
2017-06-03 11:01:47 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-16 06:00:04 +00:00
|
|
|
|
2020-03-17 10:17:50 +00:00
|
|
|
Controller.$inject = ['$element', '$scope'];
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnClientNote', {
|
2018-05-23 12:26:51 +00:00
|
|
|
template: require('./index.html'),
|
2017-06-03 11:01:47 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
client: '<'
|
2017-01-31 13:13:06 +00:00
|
|
|
}
|
2017-06-03 11:01:47 +00:00
|
|
|
});
|