Browse Source

Editor: Moved script editor on top of player.

Mr.doob 10 years ago
parent
commit
1a294d5f6e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      editor/index.html

+ 3 - 3
editor/index.html

@@ -109,12 +109,12 @@
 			var viewport = new Viewport( editor );
 			document.body.appendChild( viewport.dom );
 
-			var script = new Script( editor );
-			document.body.appendChild( script.dom );
-
 			var player = new Player( editor );
 			document.body.appendChild( player.dom );
 
+			var script = new Script( editor );
+			document.body.appendChild( script.dom );
+
 			var toolbar = new Toolbar( editor );
 			document.body.appendChild( toolbar.dom );