mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
angular
|
|
.module('bit.directives')
|
|
|
|
.directive('stopProp', function () {
|
|
return function (scope, element, attrs) {
|
|
$(element).click(function (event) {
|
|
event.stopPropagation();
|
|
});
|
|
};
|
|
});
|