mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
angular
|
|
.module('bit.directives')
|
|
|
|
// ref: https://stackoverflow.com/a/14165848/1090359
|
|
.directive('stopClick', function () {
|
|
return function (scope, element, attrs) {
|
|
$(element).click(function (event) {
|
|
event.preventDefault();
|
|
});
|
|
};
|
|
});
|