Change the overflow value from scroll to auto

This commit is contained in:
Cronos87 2014-01-27 20:47:40 +01:00
parent c23c4f5c03
commit dd4520ab45
2 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ contextMenu = {
$(".contextmenu_bg, .contextmenu").remove();
$(".photo.active, .album.active").removeClass("active");
$("body").css("overflow", "scroll");
$("body").css("overflow", "auto");
}

View File

@ -376,7 +376,7 @@ view = {
view.header.mode("album");
// Make body scrollable
$("body").css("overflow", "scroll");
$("body").css("overflow", "auto");
// Disable Fullscreen
$(document)