ソースを参照

Add method to API to toggle fullscreen.

pull/131/head
Matthew Petroff 8年前
コミット
c2da347b66
1個のファイルの変更11行の追加0行の削除
  1. +11
    -0
      src/js/pannellum.js

+ 11
- 0
src/js/pannellum.js ファイルの表示

@@ -1894,6 +1894,17 @@ this.getScene = function() {
return config.scene;
}

/**
* Toggle fullscreen.
* @memberof Viewer
* @instance
* @returns {Viewer} `this`
*/
this.toggleFullscreen = function() {
toggleFullscreen();
return this;
}

}

return {


読み込み中…
キャンセル
保存