mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Use fontastic in Nextcloud Files selector dialog
This commit is contained in:
parent
676d379e29
commit
c1b33dc0c4
1 changed files with 6 additions and 3 deletions
|
|
@ -156,19 +156,22 @@ const
|
||||||
li.dataset.icon = '🗎';
|
li.dataset.icon = '🗎';
|
||||||
|
|
||||||
btn.name = 'select';
|
btn.name = 'select';
|
||||||
btn.textContent = '📎 attach';
|
btn.dataset.icon = '📎';
|
||||||
|
btn.textContent = 'attach';
|
||||||
btn.className = 'button-vue';
|
btn.className = 'button-vue';
|
||||||
li.append(btn);
|
li.append(btn);
|
||||||
|
|
||||||
btn = document.createElement('button');
|
btn = document.createElement('button');
|
||||||
btn.name = 'share-internal';
|
btn.name = 'share-internal';
|
||||||
btn.textContent = '🔗 internal';
|
btn.dataset.icon = '🔗';
|
||||||
|
btn.textContent = 'internal';
|
||||||
btn.className = 'button-vue';
|
btn.className = 'button-vue';
|
||||||
li.append(btn);
|
li.append(btn);
|
||||||
|
|
||||||
btn = document.createElement('button');
|
btn = document.createElement('button');
|
||||||
btn.name = 'share-public';
|
btn.name = 'share-public';
|
||||||
btn.textContent = '🔗 public';
|
btn.dataset.icon = '🔗';
|
||||||
|
btn.textContent = 'public';
|
||||||
btn.className = 'button-vue';
|
btn.className = 'button-vue';
|
||||||
li.append(btn);
|
li.append(btn);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue