Пользовательская директива подсветки в popover Пользовательская директива не работает в angularjs

Пользовательская директива подсветки в popover Пользовательская директива не работает в angularjs

directive('customApmPop', ['$compile',function ($compile) {        
    return {
        restrict: 'A',
        template: '<a class="tablea" highlight=\'\' >{{trimmed}}</a>',
        scope : true ,
        link: function (scope, el, attrs) {
            scope.trimmed = attrs.popoverLabel;
            scope.contents = '<div highlight=\'\'>'+attrs.popoverHtml+'</div>';
            $(el).popover({
                trigger: 'hover',
                html: true,
                content: scope.contents,
               // template: '<div highlight=\'\'>{{contents}}</div>',
                placement: attrs.popoverPlacement
            });
        }
    };
    return directive;
}]);

0 ответов

Другие вопросы по тегам