import template from "./BreadcrumbItem.html"; angular.module("esNgAntd").directive("antdBreadcrumbItem", ["esNgAntd", function (esNgAntd) { return { template: template, restrict: "E", replace: true, transclude: true, scope: { href: "@" }, link: function ($scope, $element, $attrs, $controllers, $transclude) { esNgAntd.clearAttribute($element[0], ["href"]); } }; }]);