diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-12-20 12:38:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-20 12:38:05 +0100 |
commit | dc8809e754c22addaab20401a7505dcc4082541c (patch) | |
tree | 3d976ec5e32d105967c2d76bfbb9f8ca694cd61f /core/js/placeholder.js | |
parent | b6fcf59881b27f0a0b7541ff6e01921d7a23142e (diff) | |
parent | 0ff3c81fc14793ddb39d6d46549ec56cfec26ddd (diff) | |
download | nextcloud-server-dc8809e754c22addaab20401a7505dcc4082541c.tar.gz nextcloud-server-dc8809e754c22addaab20401a7505dcc4082541c.zip |
Merge pull request #7498 from nextcloud/fix_7497
Better handle avatars
Diffstat (limited to 'core/js/placeholder.js')
-rw-r--r-- | core/js/placeholder.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/js/placeholder.js b/core/js/placeholder.js index f173e738676..5cf7b9095ad 100644 --- a/core/js/placeholder.js +++ b/core/js/placeholder.js @@ -2,7 +2,7 @@ * ownCloud * * @author John Molakvoæ - * @copyright 2016 John Molakvoæ <fremulon@protonmail.com> + * @copyright 2016-2017 John Molakvoæ <skjnldsv@protonmail.com> * @author Morris Jobke * @copyright 2013 Morris Jobke <morris.jobke@gmail.com> * @@ -47,7 +47,7 @@ * <div id="albumart" style="background-color: hsl(123, 90%, 65%); ... ">A</div> * */ - + /* * Alternatively, you can use the prototype function to convert your string to hsl colors: * @@ -156,5 +156,6 @@ this.css('text-align', ''); this.css('line-height', ''); this.css('font-size', ''); + this.removeClass('icon-loading'); }; }(jQuery)); |