diff --git a/octoprint/static/gcodeviewer/js/ui.js b/octoprint/static/gcodeviewer/js/ui.js index f780c81..4a6e32d 100644 --- a/octoprint/static/gcodeviewer/js/ui.js +++ b/octoprint/static/gcodeviewer/js/ui.js @@ -239,7 +239,7 @@ GCODE.ui = (function(){ }); if(!Modernizr.canvas)fatal.push("
  • Your browser doesn't seem to support HTML5 Canvas, this application won't work without it.
  • "); - if(!Modernizr.filereader)fatal.push("
  • Your browser doesn't seem to support HTML5 File API, this application won't work without it.
  • "); + //if(!Modernizr.filereader)fatal.push("
  • Your browser doesn't seem to support HTML5 File API, this application won't work without it.
  • "); if(!Modernizr.webworkers)fatal.push("
  • Your browser doesn't seem to support HTML5 Web Workers, this application won't work without it.
  • "); if(!Modernizr.svg)fatal.push("
  • Your browser doesn't seem to support HTML5 SVG, this application won't work without it.
  • "); @@ -249,7 +249,7 @@ GCODE.ui = (function(){ return false; } - if(!Modernizr.webgl){ + if(!Modernizr.webgl && GCODE.renderer3d){ warnings.push("
  • Your browser doesn't seem to support HTML5 Web GL, 3d mode is not recommended, going to be SLOW!
  • "); GCODE.renderer3d.setOption({rendererType: "canvas"}); }