link: function(scope, element, attrs){ | |
var button = element.find('.MyOverlay-button'); | |
var backgr = element.find('.MyOverlay-background'); | |
// ... | |
button.on('click', function(){ | |
// ... | |
}); | |
scope.$watch('isOverlayShowing', function(isOverlayShowing){ | |
if(isOverlayShowing){ | |
backgr.css('display','block'); | |
} | |
// ... | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment