Skip to content

Commit de5caed

Browse files
committed
Remove semicolons
1 parent b108788 commit de5caed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/display/selection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export function drawSelectionCursor(cm, head, output) {
3838
cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px"
3939

4040
if (/\bcm-fat-cursor\b/.test(cm.getWrapperElement().className)) {
41-
let charPos = charCoords(cm, head, "div", null, null);
42-
cursor.style.width = Math.max(0, charPos.right - charPos.left) + "px";
41+
let charPos = charCoords(cm, head, "div", null, null)
42+
cursor.style.width = Math.max(0, charPos.right - charPos.left) + "px"
4343
}
4444

4545
if (pos.other) {

0 commit comments

Comments
 (0)