blob: 0c0ecf31a5d9bbafedbc2bd1ad85d4b40e7df158 [file] [log] [blame]
module.exports = function fallbackImageDirective() {
return {
restrict: 'A',
link: function postLink(scope, element, attrs) {
element.on('error', function() {
angular.element(this).attr('src', attrs.fallbackImage)
})
}
}
}