소스 검색

Fix bug when `destroy()` is called twice (fixes #468).

pull/482/head
Matthew Petroff 7 년 전
부모
커밋
508a21044f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/js/libpannellum.js

+ 2
- 2
src/js/libpannellum.js 파일 보기

@@ -422,10 +422,10 @@ function Renderer(container) {
*/
this.destroy = function() {
if (container !== undefined) {
if (canvas !== undefined) {
if (canvas !== undefined && container.contains(canvas)) {
container.removeChild(canvas);
}
if (world !== undefined) {
if (world !== undefined && container.contains(world)) {
container.removeChild(world);
}
}


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