From d6cdd4028cfb4868f7d4c8429601723da3567062 Mon Sep 17 00:00:00 2001 From: thatcher Date: Wed, 27 Feb 2013 09:46:33 -0500 Subject: [PATCH] removing unneccessary if --- src/viewer.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/viewer.js b/src/viewer.js index f63a5dfa..c620ccdb 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -635,9 +635,7 @@ $.extend( $.Viewer.prototype, $.EventHandler.prototype, $.ControlDock.prototype, console.log( document.webkitIsFullScreen ); // The target of the event is always the document, // but it is possible to retrieve the fullscreen element through the API - if( !_this.isFullPage() ){ - _this.setFullPage( true ); - } + _this.setFullPage( true ); } else { _this.setFullPage( false ); }