码迷,mamicode.com
首页 > Web开发 > 详细

[AngularJS] Decorator a directive

时间:2020-01-20 21:05:58      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:ret   click   you   func   link   com   class   return   remove   

use strict

    .config(function config($provide) {
        $provide.decorator(ndTrackClickDirective, function diective($delegate) {
            /**@ngInject */
            
            $delegate[0].compile = function() {
                // create a new link function
                return function(scope, el, attr) {
                    
                   /* Your code here*/
                };
            };

            // remove the old link function
            delete $delegate[0].link;

            return $delegate;
        });
    });

 

[AngularJS] Decorator a directive

标签:ret   click   you   func   link   com   class   return   remove   

原文地址:https://www.cnblogs.com/Answer1215/p/12219312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!