diff options
author | anekos | 2013-05-06 13:50:12 +0900 |
---|---|---|
committer | anekos | 2013-05-06 13:50:12 +0900 |
commit | ca52ac8695216230f2593143bb2c904dbda23634 (patch) | |
tree | f0a157c9e48a506daac43ce2859f67830bf4c565 | |
parent | 799383268a28f6a2185257dec4e72dd249e43119 (diff) | |
download | vimperator-plugins-ca52ac8695216230f2593143bb2c904dbda23634.tar.bz2 |
自動フルスクリーン設定追加
-rw-r--r-- | slideshare.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/slideshare.js b/slideshare.js index 0a6f9bc..ebab616 100644 --- a/slideshare.js +++ b/slideshare.js @@ -109,7 +109,8 @@ let INFO = xml` let styleTogglers = Array.slice(doc.querySelectorAll('object')).map(makeStyleToggler.bind(null, hiddenStyle)); return function (callback) { - main(); + if (liberator.globalVariables.slideshare_auto_fullscreen) + main(); styleTogglers.forEach(function (f) f()); setTimeout(function () { if (callback) |