SHARE
TWEET

Untitled

a guest Jan 7th, 2016 54 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. DocquireApp.directive('a', function() {
  2.     return {
  3.         restrict: 'E',
  4.         link: function(scope, elem, attrs) {
  5.             if (attrs.ngClick || attrs.href === '' || attrs.href === '#') {
  6.                 elem.on('click', function(e) {
  7.                     e.preventDefault(); // prevent link click for above criteria
  8.                 });
  9.             }
  10.         }
  11.     };
  12. });
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top