Skip to content

Commit c5a6edb

Browse files
committed
db name
1 parent b9b3fd1 commit c5a6edb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tablet/Database.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default class Database {
2525
return;
2626
if (window.Settings.enableLog)
2727
WebUtils.log("Database.open({0})".format(body));
28-
dataBase = openDatabase(body, "1.0", "ScratchJr.db", 1024 * 1024, function () {});
28+
dataBase = openDatabase(body, "1.0", "ScratchJr web database", 1024 * 1024, function () {});
2929
this.initTables();
3030
return "0";
3131
}

src/tablet/Web.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ String.prototype.format = function () {
1414

1515
export default class Web {
1616
static init() {
17-
Database.open("ScratchJrTest");
17+
Database.open("ScratchJr");
1818
// Database.test();
1919
SoundPlayer.init(function (nRe) {
2020
if (nRe == 0)

0 commit comments

Comments
 (0)