Blame view

app/scripts/directives/helperdirective.js 226 Bytes
6f105dbd5   Truong LD   add source code i...
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);
          };
      });
  });