فهرست منبع

Editor: Proper App.dispose()

Mr.doob 9 سال پیش
والد
کامیت
e07f90ba85
1فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 6 1
      editor/js/libs/app.js

+ 6 - 1
editor/js/libs/app.js

@@ -247,7 +247,12 @@ var APP = {
 
 		this.dispose = function () {
 
-			this.dom.removeChild( renderer.domElement );
+			while ( this.dom.children.length ) {
+
+				this.dom.removeChild( this.dom.firstChild );
+
+			}
+
 			renderer.dispose();
 
 		};