Browse Source

Web deployment don't resize window

Josh Engebretson 10 years ago
parent
commit
305a7b98db
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Data/AtomicEditor/Deployment/Web/AtomicPlayer.html

+ 2 - 2
Data/AtomicEditor/Deployment/Web/AtomicPlayer.html

@@ -81,8 +81,8 @@
       var playerCanvas = document.getElementById('atomic_player_canvas');
       var spinner = document.getElementById('atomic_spinner');
 
-      var width = $( window ).width() - 64;
-      var height = $( window ).height() - 64;
+      var width = $( window ).width();
+      var height = $( window ).height();
 
       new AtomicLoader(playerCanvas, spinner, width, height);