1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00

Remove Ember Attacher add-on

This commit is contained in:
HarveyKandola 2022-01-10 17:01:54 -05:00
parent 5d5e212a6b
commit c31c130ffd
17 changed files with 30 additions and 105 deletions

View file

@ -10,19 +10,13 @@
{{#link-to "folder.index" space.id space.slug}}
<div class="name">
{{#if (eq space.spaceType constants.SpaceType.Public)}}
<i class={{concat "dicon " constants.Icon.World}}>
{{#attach-tooltip showDelay=1000}}Public space{{/attach-tooltip}}
</i>
<i class={{concat "dicon " constants.Icon.World}} title="Public space" />
{{/if}}
{{#if (eq space.spaceType constants.SpaceType.Protected)}}
<i class={{concat "dicon " constants.Icon.People}}>
{{#attach-tooltip showDelay=1000}}Protected space{{/attach-tooltip}}
</i>
<i class={{concat "dicon " constants.Icon.People}} title="Protected space" />
{{/if}}
{{#if (eq space.spaceType constants.SpaceType.Private)}}
<i class={{concat "dicon " constants.Icon.Person}}>
{{#attach-tooltip showDelay=1000}}Personal space{{/attach-tooltip}}
</i>
<i class={{concat "dicon " constants.Icon.Person}} title="Personal space" />
{{/if}}
{{space.name}}
</div>