export function ItemPreviewContainer() { return { template: '
', scope: {}, link: function(scope) { scope.item = null; scope.$on('intent:preview:item', (event, intent) => { scope.item = intent.data; }); /** * Close lightbox */ scope.close = function() { scope.item = null; }; }, }; }