Fixes #286
This commit is contained in:
@@ -818,7 +818,7 @@ angular.module('app')
|
|||||||
*/
|
*/
|
||||||
var parent = this;
|
var parent = this;
|
||||||
var handleTab = function (event) {
|
var handleTab = function (event) {
|
||||||
if (!event.shiftKey && event.which == 9) {
|
if(!event.shiftKey && event.which == 9) {
|
||||||
if(parent.note.locked) {
|
if(parent.note.locked) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -841,7 +841,7 @@ angular.module('app')
|
|||||||
}
|
}
|
||||||
|
|
||||||
parent.note.text = this.value;
|
parent.note.text = this.value;
|
||||||
parent.changesMade();
|
parent.changesMade({bypassDebouncer: true});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -108,6 +108,7 @@ $heading-height: 75px;
|
|||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
tab-size: 2;
|
||||||
background-color: var(--sn-stylekit-background-color);
|
background-color: var(--sn-stylekit-background-color);
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
Reference in New Issue
Block a user