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

Editor: Check if IndexedDB is not available.

上级 d505e4d1
......@@ -36,11 +36,6 @@
<script src="../examples/js/renderers/SoftwareRenderer.js"></script>
<script src="../examples/js/renderers/SVGRenderer.js"></script>
<link href="js/libs/codemirror/codemirror.css" rel="stylesheet" />
<script src="js/libs/codemirror/codemirror.js"></script>
<script src="js/libs/codemirror/modes/javascript.js"></script>
<script src="js/libs/signals.min.js"></script>
<script src="js/libs/ui.js"></script>
<script src="js/libs/ui.editor.js"></script>
......
......@@ -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.
先完成此消息的编辑!
想要评论请 注册