mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-05-21 20:01:21 +02:00
15 lines
501 B
HTML
Executable File
15 lines
501 B
HTML
Executable File
<ol class="breadcrumb">
|
|
<li>
|
|
<a href="" ng-click="fileNavigator.goTo(-1)">
|
|
{{"filemanager" | translate}}
|
|
</a>
|
|
</li>
|
|
<li ng-repeat="(key, dir) in fileNavigator.currentPath track by key" ng-class="{'active':$last}" class="animated fast fadeIn">
|
|
<a href="" ng-show="!$last" ng-click="fileNavigator.goTo(key)">
|
|
{{dir | strLimit : 8}}
|
|
</a>
|
|
<span ng-show="$last">
|
|
{{dir | strLimit : 12}}
|
|
</span>
|
|
</li>
|
|
</ol> |