Fix #90: Full screen mode trigger if body class contains "full"

This commit is contained in:
miripiruni 2013-01-20 14:17:03 +04:00
parent 04e3946f1f
commit 37ffb1ea13
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ window.shower = (function(window, document, undefined) {
// Event handlers
window.addEventListener('DOMContentLoaded', function() {
if (shower.isSlideMode()) {
if (body.classList.contains('full')) {
shower.enterSlideMode();
}
}, false);