Browse Source

Missing semicolon.

A. Darian 8 years ago
parent
commit
a6ce485390
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/notebook/cells/editor.ts

+ 1 - 1
src/notebook/cells/editor.ts

@@ -292,7 +292,7 @@ class CellEditorWidget extends CodeMirrorWidget {
     let chHeight = editor.defaultTextHeight();
     let chWidth = editor.defaultCharWidth();
     let coords = editor.charCoords({ line, ch }, 'page') as ICoords;
-    let position = editor.getDoc().indexFromPos({ line, ch })
+    let position = editor.getDoc().indexFromPos({ line, ch });
     this.textChanged.emit({
       line, ch, chHeight, chWidth, coords, position, oldValue, newValue
     });