Blame view
app/scripts/directives/helperdirective.js
226 Bytes
6f105dbd5
|
1 2 3 4 5 6 7 8 9 |
define(['app'], function (app) { 'use strict'; app.directive('onElementLoaded', function(){ return function(scope, element, attrs) { scope.$emit('onLoaded', element, attrs); }; }); }); |