Permalink
Browse files

Merge pull request #12 from Kudo3D/fixes-pr

Integration Fixes for Web Based Controllers
  • Loading branch information...
2 parents 18a6da2 + ebac667 commit be2a5ff56916cedf6370a676d13ec991f7a6d163 @lautr3k committed Aug 9, 2016
Showing with 3 additions and 3 deletions.
  1. +3 −3 js/main.js
View
@@ -681,7 +681,7 @@ function updateBuildVolumeSettings() {
});
viewer3d.setBuildVolume(settings.get('buildVolume'));
- viewer3d.dropObject(slicer.mesh);
+ slicer.mesh && viewer3d.dropObject(slicer.mesh);
viewer3d.render();
size && updateMeshInfoUI();
@@ -1064,8 +1064,8 @@ var stl = 'stl/StressTest.stl';
//var stl = 'stl/SLAcer.stl';
// File url
-var url = 'http://' + window.location.hostname + window.location.pathname + stl;
-
+// var url = 'http://' + window.location.hostname + window.location.pathname + stl;
+var url = window.location.href + stl;
// Create http request object
var xmlhttp = new XMLHttpRequest();

0 comments on commit be2a5ff

Please sign in to comment.