mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 06:08:46 -04:00
Add missing loading indicator for enabled apps
* happened when an app gets activated, because the new appended HTML doesn't contain the loading image * fixes #15806
This commit is contained in:
parent
a672e9d556
commit
62bac7de91
1 changed files with 2 additions and 0 deletions
|
|
@ -321,8 +321,10 @@ OC.Settings.Apps = OC.Settings.Apps || {
|
|||
var img= $('<img class="app-icon"/>').attr({ src: entry.icon});
|
||||
var a=$('<a></a>').attr('href', entry.href);
|
||||
var filename=$('<span></span>');
|
||||
var loading = $('<div class="icon-loading-dark"></div>').css('display', 'none');
|
||||
filename.text(entry.name);
|
||||
a.prepend(filename);
|
||||
a.prepend(loading);
|
||||
a.prepend(img);
|
||||
li.append(a);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue