Created
May 3, 2015 19:15
-
-
Save MattDionis/368f0a5050067cd7e990 to your computer and use it in GitHub Desktop.
Angular directive to hide grandparent of '404' image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'}); | |
}) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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