Merge pull request #96 from ThommyH/add_autosave_on_open

creates an autosave submission on opening of the editor.
This commit is contained in:
rteusner
2017-03-22 15:19:09 +01:00
committed by GitHub

View File

@ -680,5 +680,7 @@ configureEditors: function () {
this.showFirstFile();
$(window).on("beforeunload", this.unloadAutoSave.bind(this));
// create autosave when the editor is opened the first time
this.autosave().bind(this);
}
};