Make app icon linkable when enabling app.

This commit is contained in:
Thomas Tanghus 2013-02-03 16:02:25 +01:00
parent b8e6b8692b
commit 88ad1e5fbd
1 changed files with 1 additions and 0 deletions

View File

@ -138,6 +138,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
li.append(img);
var a=$('<a></a>').attr('href', entry.href);
a.text(entry.name);
a.prepend(img);
li.append(a);
container.append(li);
}