### * * angular at-on-load-element * * @author atomita * @license MIT * @version 0.0.1 ### angular.module("at-on-load-element", []).directive("atOnLoadElement", ["$timeout", ($timeout)-> { restrict: "AC" scope: true link: (scope, iElement, iAttrs)-> apply = iAttrs.atOnLoadElement if apply scope.element = iElement scope.attrs = iAttrs scope.angular = angular $timeout -> scope.$apply(apply) return }