15 lines
294 B
JavaScript
15 lines
294 B
JavaScript
/* @ngInject */
|
|
export function elemReady($parse) {
|
|
return {
|
|
restrict: 'A',
|
|
link: function($scope, elem, attrs) {
|
|
elem.ready(function() {
|
|
$scope.$apply(function() {
|
|
var func = $parse(attrs.elemReady);
|
|
func($scope);
|
|
});
|
|
});
|
|
}
|
|
};
|
|
}
|