Skip to content

Instantly share code, notes, and snippets.

@TravisMullen
Created January 22, 2017 18:52
Show Gist options
  • Save TravisMullen/1d5deff670e608b118b955e1a6ecf94c to your computer and use it in GitHub Desktop.
Save TravisMullen/1d5deff670e608b118b955e1a6ecf94c to your computer and use it in GitHub Desktop.
Stop Event
.directive( 'stopEvent',
[ function() {
'use strict';
return {
restrict : 'A',
link : function(scope, element, attr) {
element.bind(attr.stopEvent, function(e) {
e.stopPropagation();
});
}
};
} ]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment