提交 ef7f8009 编写于 作者: M Mr.doob

Bumping version number.

上级 3d4893c2
......@@ -2,9 +2,9 @@
* @author mr.doob / http://mrdoob.com/
*/
var THREE = THREE || { REVISION: '50dev' };
var THREE = THREE || { REVISION: '50' };
if ( ! self.console ) {
if ( self.console === undefined ) {
self.console = {
......@@ -18,7 +18,7 @@ if ( ! self.console ) {
}
if ( ! self.Int32Array ) {
if ( self.Int32Array === undefined ) {
self.Int32Array = Array;
self.Float32Array = Array;
......@@ -43,7 +43,7 @@ if ( ! self.Int32Array ) {
}
if ( !window.requestAnimationFrame ) {
if ( window.requestAnimationFrame === undefined ) {
window.requestAnimationFrame = function ( callback, element ) {
......@@ -57,7 +57,7 @@ if ( ! self.Int32Array ) {
}
if ( !window.cancelAnimationFrame ) {
if ( window.cancelAnimationFrame === undefined ) {
window.cancelAnimationFrame = function ( id ) { clearTimeout( id ); };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册