소스 검색

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 {


불러오는 중...
취소
저장