|
@@ -57,55 +57,6 @@ var WEBVR = {
|
|
|
|
|
|
},
|
|
|
|
|
|
- getMessage: function () {
|
|
|
-
|
|
|
- console.warn( 'WEBVR: getMessage() is being deprecated. Use .getMessageContainer( message ) instead.' );
|
|
|
-
|
|
|
- var message;
|
|
|
-
|
|
|
- if ( navigator.getVRDisplays ) {
|
|
|
-
|
|
|
- navigator.getVRDisplays().then( function ( displays ) {
|
|
|
-
|
|
|
- if ( displays.length === 0 ) message = 'WebVR supported, but no VRDisplays found.';
|
|
|
-
|
|
|
- } );
|
|
|
-
|
|
|
- } else {
|
|
|
-
|
|
|
- message = 'Your browser does not support WebVR. See <a href="http://webvr.info">webvr.info</a> for assistance.';
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- if ( message !== undefined ) {
|
|
|
-
|
|
|
- var container = document.createElement( 'div' );
|
|
|
- container.style.position = 'absolute';
|
|
|
- container.style.left = '0';
|
|
|
- container.style.top = '0';
|
|
|
- container.style.right = '0';
|
|
|
- container.style.zIndex = '999';
|
|
|
- container.align = 'center';
|
|
|
-
|
|
|
- var error = document.createElement( 'div' );
|
|
|
- error.style.fontFamily = 'sans-serif';
|
|
|
- error.style.fontSize = '16px';
|
|
|
- error.style.fontStyle = 'normal';
|
|
|
- error.style.lineHeight = '26px';
|
|
|
- error.style.backgroundColor = '#fff';
|
|
|
- error.style.color = '#000';
|
|
|
- error.style.padding = '10px 20px';
|
|
|
- error.style.margin = '50px';
|
|
|
- error.style.display = 'inline-block';
|
|
|
- error.innerHTML = message;
|
|
|
- container.appendChild( error );
|
|
|
-
|
|
|
- return container;
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- },
|
|
|
-
|
|
|
getMessageContainer: function ( message ) {
|
|
|
|
|
|
var container = document.createElement( 'div' );
|