- Mar 05, 2015
-
-
Kevin Earls authored
Closes #3114
-
Peter Flynn authored
-
- Mar 04, 2015
-
-
nightwing authored
-
- Mar 02, 2015
-
-
Marijn Haverbeke authored
-
nightwing authored
-
Marijn Haverbeke authored
-
- Feb 27, 2015
-
-
coderaiser authored
-
- Feb 26, 2015
-
-
Marijn Haverbeke authored
Looking up arbitrary strings without a hasOwnProperty check never ends well. Closes #3106
-
Marijn Haverbeke authored
Issue #3104
-
- Feb 25, 2015
-
-
Marijn Haverbeke authored
Margins for gutter markers aren't supported, and this was pushing the numbers into the content. Issue #3098
-
Marijn Haverbeke authored
Issue #3098
-
- Feb 24, 2015
-
-
Marijn Haverbeke authored
Closes #2581
-
Marijn Haverbeke authored
Closes #2858
-
Marijn Haverbeke authored
Closes #3073
-
Marijn Haverbeke authored
It was a broken mess. The Smarty mode now supports a base mode. Issue #2871
-
Marijn Haverbeke authored
Issue #2871
-
Marijn Haverbeke authored
At least that works. Closes #1788
-
Marijn Haverbeke authored
-
- Feb 23, 2015
-
-
Marcel Gerber authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Closes #3099
-
Marijn Haverbeke authored
We're still targeting ES3.
-
Zhang Hao authored
-
- Feb 20, 2015
-
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Typing the same character multiple times in a row would cause a character to be deleted.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
So that styling content causes a redraw, removing the style
-
Marijn Haverbeke authored
Since preventDefaulting the first touchend event means the native behavior won't happen anymore, this is seems to be the only way to make multi-tap work for iOS.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Since Mobile Chrome's clipboard API is broken and does not let us intercept paste events, we need full contenteditable to be able to paste code with newlines. Issue #3062
-
mihailik authored
Selecting and copying a large chunk of text places a single dash into clipboard. This is related to line 1285, where the input's content is trimmed for performance: https://github.com/codemirror/CodeMirror/blob/mobile/lib/codemirror.js#L1285 minimal = hasCopyEvent && (range.to().line - range.from().line > 100 || (selected = cm.getSelection()).length > 1000); var content = minimal ? "-" : selected || cm.getSelection(); The problem is apparently a typo during refactoring/renaming from 'd' on the master branch to 'input' here.
-
Marijn Haverbeke authored
Since that might end up calling resetInput and creating an inconsistent state. Issue #3046
-
Marijn Haverbeke authored
It can create a kind of phantom-focus state where the textarea is focused but you can't type into it. Issue #3041
-