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

Editor: Check if IndexedDB is not available.

上级 b4d285cd
......@@ -2,6 +2,11 @@ var Storage = function () {
var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB;
if ( indexedDB === undefined ) {
console.warn( 'Storage: IndexedDB not available.' );
return { init: function (){}, get: function (){}, set: function (){}, clear: function (){} };
}
var name = 'threejs-editor';
var version = 1;
......@@ -35,7 +40,7 @@ var Storage = function () {
console.error( 'IndexedDB', event );
};
},
......@@ -75,11 +80,11 @@ var Storage = function () {
request.onsuccess = function ( event ) {
callback();
};
}
}
};
\ No newline at end of file
};
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册