Files
stf-DeviceFarmer/res/app/components/stf/common-ui/modals/external-url-modal/on-load-event-directive.js
2014-06-19 16:59:59 +09:00

11 lines
244 B
JavaScript

// TODO: Test this
module.exports = function () {
return function (scope, element, attrs) {
scope.$watch(attrs.pageVisible, function () {
element.bind('load', function () {
scope.$apply(attrs.pageLoad)
})
})
}
}