You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
556 B
11 lines
556 B
<div ng-show="breadcrumbConfig" ng-init="breadcrumbConfig = $parent.breadcrumbConfig"
|
|
ng-controller="Developer.NavBarController">
|
|
<ol class="breadcrumb">
|
|
<li ng-repeat="breadcrumb in breadcrumbConfig" ng-show="isValid(breadcrumb)"
|
|
class="{{breadcrumb.active ? 'active' : ''}}"
|
|
title="{{breadcrumb.title}}">
|
|
<a ng-show="breadcrumb.href && !breadcrumb.active" href="{{breadcrumb.href}}">{{breadcrumb.label}}</a>
|
|
<span ng-hide="breadcrumb.href && !breadcrumb.active">{{breadcrumb.label}}</span>
|
|
</ol>
|
|
</div>
|