Improve auto-fullscreen delay #625

pull/632/head
Tobias Reich 8 years ago
parent 5c1ee46a21
commit 89b4f56160

@ -309,11 +309,11 @@ view.photo = {
$('body').css('overflow', 'hidden')
// Fullscreen
var timeout
let timeout = null
$(document).bind('mousemove', function() {
clearTimeout(timeout)
header.show()
timeout = setTimeout(header.hide, 1000)
timeout = setTimeout(header.hide, 2500)
})
lychee.animate(lychee.imageview, 'fadeIn')
@ -331,8 +331,7 @@ view.photo = {
$('body').css('overflow', 'auto')
// Disable Fullscreen
$(document)
.unbind('mousemove')
$(document).unbind('mousemove')
// Hide Photo
lychee.animate(lychee.imageview, 'fadeOut')

Loading…
Cancel
Save