mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 17:16:07 +08: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 = '🗎';
|
||||
|
||||
btn.name = 'select';
|
||||
btn.textContent = '📎 attach';
|
||||
btn.dataset.icon = '📎';
|
||||
btn.textContent = 'attach';
|
||||
btn.className = 'button-vue';
|
||||
li.append(btn);
|
||||
|
||||
btn = document.createElement('button');
|
||||
btn.name = 'share-internal';
|
||||
btn.textContent = '🔗 internal';
|
||||
btn.dataset.icon = '🔗';
|
||||
btn.textContent = 'internal';
|
||||
btn.className = 'button-vue';
|
||||
li.append(btn);
|
||||
|
||||
btn = document.createElement('button');
|
||||
btn.name = 'share-public';
|
||||
btn.textContent = '🔗 public';
|
||||
btn.dataset.icon = '🔗';
|
||||
btn.textContent = 'public';
|
||||
btn.className = 'button-vue';
|
||||
li.append(btn);
|
||||
|
||||
|
|
Loading…
Reference in a new issue