mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-25 00:28:20 -05:00
Fix story saving
This commit is contained in:
parent
96ce9b0641
commit
7e7581dd34
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ export default class ScratchJr {
|
||||||
Project.prepareToSave(currentProject, onDone);
|
Project.prepareToSave(currentProject, onDone);
|
||||||
});
|
});
|
||||||
}, true);
|
}, true);
|
||||||
} else if (ScratchJr.isEditable() && currentProject && !Project.error && changed) {
|
} else if (ScratchJr.isEditable() && editmode != 'storyStarter' && currentProject && !Project.error && changed) {
|
||||||
Project.prepareToSave(currentProject, onDone);
|
Project.prepareToSave(currentProject, onDone);
|
||||||
} else {
|
} else {
|
||||||
if (onDone) {
|
if (onDone) {
|
||||||
|
|
Loading…
Reference in a new issue