Use the "classic" editor by default (#697)

This commit is contained in:
Ana Gelez 2019-11-16 18:53:27 +01:00 committed by GitHub
parent c66ef5f85d
commit 7f296b2ef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 23 deletions

View File

@ -258,8 +258,12 @@ pub fn init() -> Result<(), EditorError> {
ed.add_event_listener(|_: SubmitEvent| clear_autosave());
}
// Check if the user wants to use the basic editor
if let Some(basic_editor) = window().local_storage().get("basic-editor") {
if basic_editor == "true" {
if window()
.local_storage()
.get("basic-editor")
.map(|x| x == "true")
.unwrap_or(true)
{
if let Some(editor) = document().get_element_by_id("plume-fallback-editor") {
if let Ok(Some(title_label)) = document().query_selector("label[for=title]") {
let editor_button = document().create_element("a")?;
@ -276,14 +280,13 @@ pub fn init() -> Result<(), EditorError> {
.get_element_by_id("editor-content")
.unwrap()
.add_event_listener(|_: KeyDownEvent| autosave_debounce());
return Ok(());
}
}
}
}
// If we didn't returned above
Ok(())
} else {
init_editor()
}
}
fn init_editor() -> Result<(), EditorError> {