mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
module.exports = function fallbackImageDirective() {
|
|
return {
|
|
restrict: 'A',
|
|
link: function postLink(scope, element, attrs) {
|
|
element.on('error', function() {
|
|
angular.element(this).attr('src', attrs.fallbackImage)
|
|
})
|
|
}
|
|
}
|
|
}
|