Skip to content

Instantly share code, notes, and snippets.

@MattDionis
Created May 3, 2015 19:15
Show Gist options
  • Save MattDionis/368f0a5050067cd7e990 to your computer and use it in GitHub Desktop.
Save MattDionis/368f0a5050067cd7e990 to your computer and use it in GitHub Desktop.
Angular directive to hide grandparent of '404' image
angular
.module('app')
.directive('hideImage', hideImage);
function hideImage() {
var directive = {
link: link,
restrict: 'A'
};
return directive;
function link(scope, element, attrs) {
element.bind('error', function() {
element.parent().parent().css({'display': 'none'});
})
}
}
<div ng-repeat="photo in event.photos">
<a ng-href="{{photo.link}}" target="_blank" title="{{photo.text}}"><img ng-src="{{photo.img}}" hide-image id="image"></a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment