blob: 5744a951f346d5a810a0762937e202cfecc023df [file] [log] [blame]
module.exports = function imageOnloadDirective() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
element.bind('load', function() {
scope.$eval(attrs.imageOnload)
// console.log('image is loaded')
})
}
}
}