fix sidebar spinner

This commit is contained in:
Hendrik Leppelsack 2015-09-25 12:11:50 +02:00 committed by Roeland Jago Douma
parent 87e067f4c8
commit 0ae931ed57
2 changed files with 10 additions and 4 deletions

View File

@ -73,5 +73,9 @@
}
.shareTabView .icon-loading-small {
margin-left: -30px;
position: absolute;
display: inline-block;
z-index: 1;
background-color: white;
padding: 2px;
}

View File

@ -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');