mirror of
https://github.com/nextcloud/server.git
synced 2026-04-27 09:08:22 -04:00
fixing javascript errors IE8 in apps management
This commit is contained in:
parent
f4c9d4c067
commit
c5d716effe
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
|
|||
if(container.children('li[data-id="'+entry.id+'"]').length === 0){
|
||||
var li=$('<li></li>');
|
||||
li.attr('data-id', entry.id);
|
||||
var img= $('<img></img>').attr({ src: entry.icon, class:'icon'});
|
||||
var img= $('<img class="icon"/>').attr({ src: entry.icon});
|
||||
var a=$('<a></a>').attr('href', entry.href);
|
||||
a.text(entry.name);
|
||||
a.prepend(img);
|
||||
|
|
|
|||
Loading…
Reference in a new issue