Skip to content
Snippets Groups Projects
Commit 0ae931ed authored by Hendrik Leppelsack's avatar Hendrik Leppelsack Committed by Roeland Jago Douma
Browse files

fix sidebar spinner

parent 87e067f4
No related branches found
No related tags found
No related merge requests found
......@@ -73,5 +73,9 @@
}
.shareTabView .icon-loading-small {
margin-left: -30px;
position: absolute;
display: inline-block;
z-index: 1;
background-color: white;
padding: 2px;
}
......@@ -21,7 +21,7 @@
' {{/if}}' +
' {{#unless isCollection}}' +
' <li data-share-type="{{shareType}}" data-share-with="{{shareWith}}" title="{{shareWith}}">' +
' <a href="#" class="unshare"><img class="svg" alt="{{unshareLabel}}" title="{{unshareLabel}}" src="{{unshareImage}}" /></a>' +
' <a href="#" class="unshare"><span class="icon-loading-small hidden"></span><img class="svg" alt="{{unshareLabel}}" title="{{unshareLabel}}" src="{{unshareImage}}" /></a>' +
' {{#if avatarEnabled}}' +
' <div class="avatar {{#if modSeed}}imageplaceholderseed{{/if}}" data-username="{{shareWith}}" {{#if modSeed}}data-seed="{{shareWith}} {{shareType}}"{{/if}}></div>' +
' {{/if}}' +
......@@ -244,12 +244,14 @@
onUnshare: function(event) {
var $element = $(event.target);
console.log($element);
if($element.hasClass('icon-loading-small')) {
var $loading = $element.siblings('.icon-loading-small').eq(0);
if(!$loading.hasClass('hidden')) {
// in process
return;
}
$element.empty().addClass('icon-loading-small');
$loading.removeClass('hidden');
var $li = $element.closest('li');
var shareType = $li.data('share-type');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment