blob: e888d5740f452c9e56964c8eb6a547523c996b0e [file] [log] [blame]
// TODO: Test this
module.exports = function() {
return function(scope, element, attrs) {
scope.$watch(attrs.pageVisible, function() {
element.bind('load', function() {
scope.$apply(attrs.pageLoad)
})
})
}
}