This commit is contained in:
Mo Bitar
2019-05-11 17:52:07 -05:00
parent c59ab2c3f9
commit ae8a455f94
2 changed files with 3 additions and 2 deletions

View File

@@ -818,7 +818,7 @@ angular.module('app')
*/
var parent = this;
var handleTab = function (event) {
if (!event.shiftKey && event.which == 9) {
if(!event.shiftKey && event.which == 9) {
if(parent.note.locked) {
return;
}
@@ -841,7 +841,7 @@ angular.module('app')
}
parent.note.text = this.value;
parent.changesMade();
parent.changesMade({bypassDebouncer: true});
}
}

View File

@@ -108,6 +108,7 @@ $heading-height: 75px;
overflow-y: hidden;
height: 100%;
display: flex;
tab-size: 2;
background-color: var(--sn-stylekit-background-color);
position: relative;