Skip to content

Commit 2a72130

Browse files
committed
Make context menu work on FF4 on Win7
Apparently, popping up the context menu took more than 50 \(\!\) milliseconds on that platform, and codemirror had already hidden the textarea again by the time the menu arrived.
1 parent 09c4eb5 commit 2a72130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ var CodeMirror = (function() {
11351135
leaveInputAlone = false;
11361136
prepareInput();
11371137
slowPoll();
1138-
}, 50);
1138+
}, 100);
11391139
}
11401140

11411141
// Cursor-blinking

0 commit comments

Comments
 (0)