Browse Source

Detector.js message now pointing to get.webgl.org.

Mr.doob 14 years ago
parent
commit
ce39f2aa41
1 changed files with 4 additions and 6 deletions
  1. 4 6
      examples/js/Detector.js

+ 4 - 6
examples/js/Detector.js

@@ -26,13 +26,11 @@ Detector = {
 		if ( ! this.webgl ) {
 
 			domElement.innerHTML = window.WebGLRenderingContext ? [
-				'Sorry, your graphics card doesn\'t support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation">WebGL</a>'
+				'Your graphics card does not seem to support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation">WebGL</a>.<br />',
+				'Find out how to get it <a href="http://get.webgl.org/">here</a>.'
 			].join( '\n' ) : [
-				'Sorry, your browser doesn\'t support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation">WebGL</a><br/>',
-				'Please try with',
-				'<a href="http://www.google.com/chrome">Chrome</a>, ',
-				'<a href="http://www.mozilla.com/en-US/firefox/new/">Firefox 4</a> or',
-				'<a href="http://nightly.webkit.org/">Webkit Nightly (Mac)</a>'
+				'Your browser does not seem to support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation">WebGL</a>.<br/>',
+				'Find out how to get it <a href="http://get.webgl.org/">here</a>.'
 			].join( '\n' );
 
 		}