Hide download button only w/o photos and subalbums.
Previously, an album with subalbums, but without photos, was hiding the download button.
This commit is contained in:
parent
20c194f00c
commit
a258affc5f
@ -141,8 +141,8 @@ header.setMode = function(mode) {
|
|||||||
header.dom('.header__toolbar--album').addClass('header__toolbar--visible')
|
header.dom('.header__toolbar--album').addClass('header__toolbar--visible')
|
||||||
|
|
||||||
// Hide download button when album empty
|
// Hide download button when album empty
|
||||||
if (album.json.content===false) $('#button_archive').hide()
|
if (album.json.content===false && album.subjson.num==0) $('#button_archive').hide()
|
||||||
else $('#button_archive').show()
|
else $('#button_archive').show()
|
||||||
|
|
||||||
// Hide download button when not logged in and album not downloadable
|
// Hide download button when not logged in and album not downloadable
|
||||||
if (lychee.publicMode===true && album.json.downloadable==='0') $('#button_archive').hide()
|
if (lychee.publicMode===true && album.json.downloadable==='0') $('#button_archive').hide()
|
||||||
|
Loading…
Reference in New Issue
Block a user