Replaced lychee.goto('') with lychee.goto()
This commit is contained in:
parent
c594210579
commit
20963ac463
@ -55,7 +55,7 @@ album.load = function(albumID, refresh = false) {
|
|||||||
} else {
|
} else {
|
||||||
// Album not public
|
// Album not public
|
||||||
lychee.content.show()
|
lychee.content.show()
|
||||||
lychee.goto('')
|
lychee.goto()
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@ -178,7 +178,7 @@ album.delete = function(albumIDs) {
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
albums.refresh()
|
albums.refresh()
|
||||||
lychee.goto('')
|
lychee.goto()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ header.bind = function() {
|
|||||||
header.dom('#button_trash') .on(eventName, function() { photo.delete([ photo.getID() ]) })
|
header.dom('#button_trash') .on(eventName, function() { photo.delete([ photo.getID() ]) })
|
||||||
header.dom('#button_archive') .on(eventName, function() { album.getArchive(album.getID()) })
|
header.dom('#button_archive') .on(eventName, function() { album.getArchive(album.getID()) })
|
||||||
header.dom('#button_star') .on(eventName, function() { photo.setStar([ photo.getID() ]) })
|
header.dom('#button_star') .on(eventName, function() { photo.setStar([ photo.getID() ]) })
|
||||||
header.dom('#button_back_home') .on(eventName, function() { lychee.goto('') })
|
header.dom('#button_back_home') .on(eventName, function() { lychee.goto() })
|
||||||
header.dom('#button_back') .on(eventName, function() { lychee.goto(album.getID()) })
|
header.dom('#button_back') .on(eventName, function() { lychee.goto(album.getID()) })
|
||||||
|
|
||||||
header.dom('.header__search').on('keyup click', function() { search.find($(this).val()) })
|
header.dom('.header__search').on('keyup click', function() { search.find($(this).val()) })
|
||||||
|
@ -68,7 +68,7 @@ $(document).ready(function() {
|
|||||||
if (basicModal.visible()===true) basicModal.cancel()
|
if (basicModal.visible()===true) basicModal.cancel()
|
||||||
else if (visible.contextMenu()) contextMenu.close()
|
else if (visible.contextMenu()) contextMenu.close()
|
||||||
else if (visible.photo()) lychee.goto(album.getID())
|
else if (visible.photo()) lychee.goto(album.getID())
|
||||||
else if (visible.album()) lychee.goto('')
|
else if (visible.album()) lychee.goto()
|
||||||
else if (visible.albums() && header.dom('.header__search').val().length!==0) search.reset()
|
else if (visible.albums() && header.dom('.header__search').val().length!==0) search.reset()
|
||||||
return false
|
return false
|
||||||
})
|
})
|
||||||
|
@ -156,10 +156,9 @@ lychee.logout = function() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lychee.goto = function(url) {
|
lychee.goto = function(url = '') {
|
||||||
|
|
||||||
if (url===undefined) url = '#'
|
url = '#' + url
|
||||||
else url = '#' + url
|
|
||||||
|
|
||||||
history.pushState(null, null, url)
|
history.pushState(null, null, url)
|
||||||
lychee.load()
|
lychee.load()
|
||||||
|
@ -386,7 +386,7 @@ upload.start = {
|
|||||||
|
|
||||||
// Go back to the album overview to show the imported albums
|
// Go back to the album overview to show the imported albums
|
||||||
if (visible.albums()) lychee.load()
|
if (visible.albums()) lychee.load()
|
||||||
else lychee.goto('')
|
else lychee.goto()
|
||||||
|
|
||||||
basicModal.close()
|
basicModal.close()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user