Breadcrumb.js 485 Bytes
import template from "./Breadcrumb.html";
import style from "antd/lib/breadcrumb/style/index.css";
angular.module("esNgAntd").directive("esBreadcrumb", function (esNgAntd) {
    return {
        controllerAs: "esBreadcrumb",
        restrict: "E",
        transclude: true,
        replace: true,
        template: template,
        link: function ($scope, $element, $attrs, $controllers, $transclude) {
            esNgAntd.createStyle("ant-breadcrumb", style);
        },
    };
});