Skip to content

Instantly share code, notes, and snippets.

@ronapelbaum
Created July 20, 2016 10:06
Show Gist options
  • Select an option

  • Save ronapelbaum/3d386c0df3d1beb70f34d633c8b5150c to your computer and use it in GitHub Desktop.

Select an option

Save ronapelbaum/3d386c0df3d1beb70f34d633c8b5150c to your computer and use it in GitHub Desktop.
test angular directives dom events
angular.module('utils', []).directive('hover', function() {
return {
restrict: 'E',
template: '<div ng-mouseover="ctrl.over()">HOVER</div>',
controllerAs: 'ctrl',
controller: function() {
this.over = function() {
console.log('over');
};
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment