Skip to content

Instantly share code, notes, and snippets.

@kirillshevch
Created June 23, 2016 12:50
Show Gist options
  • Select an option

  • Save kirillshevch/90c3302cbff73bc9c0030e671aa09679 to your computer and use it in GitHub Desktop.

Select an option

Save kirillshevch/90c3302cbff73bc9c0030e671aa09679 to your computer and use it in GitHub Desktop.
directive = ->
restrict: 'A'
link: ($scope, $elem, $attrs) ->
$elem.mouseover( ->
console.log('test')
).mouseout( ->
console.log('test')
)
angular
.module('modulename')
.directive('contentHider', [directive])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment