From 1103400a95d3d0f5c366ebb7245bf3926e5c7542 Mon Sep 17 00:00:00 2001 From: Mo Bitar Date: Sat, 13 Apr 2019 12:15:44 -0500 Subject: [PATCH] Disables spellcheck on note title field --- app/assets/templates/editor.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/templates/editor.html.haml b/app/assets/templates/editor.html.haml index c89d5a0c0..bba107f19 100644 --- a/app/assets/templates/editor.html.haml +++ b/app/assets/templates/editor.html.haml @@ -11,7 +11,7 @@ .title %input.input#note-title-editor{"ng-model" => "ctrl.note.title", "ng-keyup" => "$event.keyCode == 13 && ctrl.onTitleEnter($event)", "ng-change" => "ctrl.onTitleChange()", "ng-focus" => "ctrl.onNameFocus()", "ng-blur" => "ctrl.onNameBlur()", - "select-on-click" => "true", "ng-disabled" => "ctrl.note.locked"} + "select-on-click" => "true", "ng-disabled" => "ctrl.note.locked", "spellcheck" => "false"} #save-status .message{"ng-class" => "{'warning sk-bold': ctrl.syncTakingTooLong, 'danger sk-bold': ctrl.saveError}"} {{ctrl.noteStatus.message}}