Fixed a bug where the image stood in fullscreen

This commit is contained in:
Tobias Reich 2014-03-27 00:25:54 +01:00
parent 994e881c5a
commit 177d7dda95

View File

@ -114,7 +114,7 @@ build = {
if (visibleControls)
view += "<div id='image' style='background-image: url(" + photoJSON.url + ")'></div>";
else
view += "<div id='image' style='background-image: url(" + photoJSON.url + "); top: 0px; right: 0px; bottom: 0px; left: 0px;'></div>";
view += "<div id='image' style='background-image: url(" + photoJSON.url + ");' class='full'></div>";
}