aboutsummaryrefslogtreecommitdiff
path: root/editor/editor.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor.ts')
-rw-r--r--editor/editor.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor.ts b/editor/editor.ts
index e8883c4..75be1dd 100644
--- a/editor/editor.ts
+++ b/editor/editor.ts
@@ -24,6 +24,7 @@ export interface WuiEditorOptions {
export class WuiEditor {
id: string
is_editable: boolean
+ lines: WuiEditorLine[] = []
private el!: HTMLElement
private sel!: Selection
private active_file: WuiVfsNodeInterface | null = null
@@ -31,7 +32,6 @@ export class WuiEditor {
private range_begin: number = -1
private range_end: number = -1
private raw_lines: string[] = []
- private lines: WuiEditorLine[] = []
private range!: Range
private is_key_control: boolean = false
private unre: WuiEditorUndoRedo = new WuiEditorUndoRedo()