Welcome to mirror list, hosted at ThFree Co, Russian Federation.

breadcrumb.html « controls « templates « res « general « commonUI « platform - github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce923da77e21d71c1b684def61908d733a2b5676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div ng-init="bcItems=[
				{type: 'folder', glyph: 'F', name: 'My Items'},
				{type: 'layout', glyph: 'L', name: 'Layout with a somewhat long name'},
				{type: 'telemetry-panel', glyph: 't', name: 'Panel, My Panel'},
				{type: 'telemetry-element', glyph: 'T', name: 'ACS-0009'}
	        ]"></div>

<div class="l-breadcrumb s-breadcrumb">
	<span
		class="l-breadcrumb-item s-breadcrumb-item"
		ng-repeat="bcItem in bcItems"
		>
		<a><span class="ui-symbol icon {{bcItem.type}}">{{bcItem.glyph}}</span>{{bcItem.name}}</a> <span class="ui-symbol sep">}</span>
	</span>
</div>