diff --git a/lib/webgl-utils.js b/lib/webgl-utils.js index 7a6b546..2639ee0 100644 --- a/lib/webgl-utils.js +++ b/lib/webgl-utils.js @@ -68,13 +68,13 @@ WebGLUtils = function() { var makeFailHTML = function(msg) { return '' + '
' + msg + '
'; - return '' + - '' + - '
' + - '
' + - '
' + msg + '
' + - '
' + - '
'; + // return '' + + // '' + + // '
' + + // '
' + + // '
' + msg + '
' + + // '
' + + // '
'; }; /** @@ -182,10 +182,10 @@ if (!window.requestAnimationFrame) { })(); } -/** * ERRATA: 'cancelRequestAnimationFrame' renamed to 'cancelAnimationFrame' to reflect an update to the W3C Animation-Timing Spec. - * - * Cancels an animation frame request. - * Checks for cross-browser support, falls back to clearTimeout. +/** * ERRATA: 'cancelRequestAnimationFrame' renamed to 'cancelAnimationFrame' to reflect an update to the W3C Animation-Timing Spec. + * + * Cancels an animation frame request. + * Checks for cross-browser support, falls back to clearTimeout. * @param {number} Animation frame request. */ if (!window.cancelAnimationFrame) { window.cancelAnimationFrame = (window.cancelRequestAnimationFrame ||