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

fileactionsmenu.handlebars « templates « js « files « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b14ec02e5b9a737bf7818f84f0cb113861fdeb26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ul>
	{{#each items}}
		<li class="{{#if inline}}hidden{{/if}} action-{{nameLowerCase}}-container">
			<a href="#" class="menuitem action action-{{nameLowerCase}} permanent" data-action="{{name}}">
				{{#if icon}}<img class="icon" src="{{icon}}"/>
				{{else}}
					{{#if iconClass}}
						<span class="icon {{iconClass}}"></span>
					{{else}}
						<span class="no-icon"></span>
					{{/if}}
				{{/if}}
				<span>{{displayName}}</span>
			</a>
		</li>
	{{/each}}
</ul>