Favorites: fix not all items could be added to favorites

This commit is contained in:
bergware
2024-01-03 20:00:32 +01:00
parent c4b6b0cfab
commit 7ccd820373
+1
View File
@@ -16,4 +16,5 @@ $(function(){
$(this).find('span').append('<i class="fa fa-heart favo" title="_(Add to favorites)_" onclick="addPage(&quot;'+page+'&quot;);return false"></i>');
$(this).hover(function(){$(this).find('i.favo').show();},function(){$(this).find('i.favo').hide();});
});
});
</script>