Check if Shower is already in slide/list mode

This commit is contained in:
Frederic Hemberger 2012-12-29 14:58:41 +01:00
parent bcaeb91ce5
commit 3d414b190b
1 changed files with 6 additions and 2 deletions

View File

@ -131,7 +131,9 @@ window.shower = (function(window, document, undefined) {
* @returns {number} * @returns {number}
*/ */
shower.enterSlideMode = function() { shower.enterSlideMode = function() {
// @TODO: check if it's already in slide mode... // check if it's already in slide mode...
if ( body.classList.contains('full') ) { return; }
body.classList.remove('list'); body.classList.remove('list');
body.classList.add('full'); body.classList.add('full');
return shower._applyTransform(shower._getTransform()); return shower._applyTransform(shower._getTransform());
@ -142,7 +144,9 @@ window.shower = (function(window, document, undefined) {
* @returns {number} * @returns {number}
*/ */
shower.enterListMode = function() { shower.enterListMode = function() {
// @TODO: check if it's already in list mode... // check if it's already in list mode...
if ( body.classList.contains('list') ) { return; }
body.classList.remove('full'); body.classList.remove('full');
body.classList.add('list'); body.classList.add('list');
return shower._applyTransform('none'); return shower._applyTransform('none');