Skip to content

Instantly share code, notes, and snippets.

@satishSKY
Last active June 20, 2016 11:47
Show Gist options
  • Select an option

  • Save satishSKY/d55f2e669dfb1612c04731bf37a3fbfc to your computer and use it in GitHub Desktop.

Select an option

Save satishSKY/d55f2e669dfb1612c04731bf37a3fbfc to your computer and use it in GitHub Desktop.
image 404 status checking
.directive('errSrc', function () { // image 404 status checking
return {
link: function (scope, element, attrs) {
element.bind('error', function () {
if (attrs.src != attrs.errSrc) {
attrs.$set('src', attrs.errSrc);
}
});
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment