modify project save method to IndexedDB

This commit is contained in:
kekee000
2015-01-26 23:08:26 +08:00
parent 6756b39dbc
commit 6bb76f3e3e
8 changed files with 1086 additions and 33 deletions

25
demo/datastore.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>测试editor</title>
<script src="../dep/esl.js"></script>
<script src="../dep/jquery.min.js"></script>
</head>
<body>
<script>
require.config({
baseUrl: '../src',
paths: {
demo: '../demo/js',
}
});
define('jquery', $);
</script>
<script>
require(['demo/datastore']);
</script>
</body>
</html>