diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2016-09-27 09:43:21 +0200 |
---|---|---|
committer | skjnldsv <fremulon@protonmail.com> | 2016-09-27 21:06:25 +0200 |
commit | f623d020f776280a8c17ea3764dde446c55652df (patch) | |
tree | c0d40f7c3495a550904e203ee309db6882b6019a /apps/files/js/filelist.js | |
parent | 810f72df4644793673026c7490b5b2fe794ed05f (diff) | |
download | nextcloud-server-f623d020f776280a8c17ea3764dde446c55652df.tar.gz nextcloud-server-f623d020f776280a8c17ea3764dde446c55652df.zip |
Use css loading animation and not gif
Signed-off-by: John Molakvoæ <fremulon@protonmail.com>
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 26c6b34d098..0e842cc7a74 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -2341,10 +2341,8 @@ this.$table.addClass('hidden'); this.$el.find('#emptycontent').addClass('hidden'); - $mask = $('<div class="mask transparent"></div>'); + $mask = $('<div class="mask transparent icon-loading"></div>'); - $mask.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')'); - $mask.css('background-repeat', 'no-repeat'); this.$el.append($mask); $mask.removeClass('transparent'); |