linagora-rse
Version:
18 lines (15 loc) • 378 B
JavaScript
(function() {
'use strict';
angular.module('esn.attachment')
.component('esnAttachmentIcon', esnAttachmentIcon());
function esnAttachmentIcon() {
return {
bindings: {
type: '<'
},
controller: 'ESNAttachmentIconController',
controllerAs: 'ctrl',
templateUrl: '/views/modules/attachment/attachment-icon.html'
};
}
})();