/* global angular */ angular.module('codexen') .directive('tagItem', function () { return { restrict: 'A', template: '#', scope: { tag: '=tagItem' }, link: function (scope, el) { el.on('click', function () { scope.$emit('tagSelected', scope.tag) }) } } })