- Jan 26, 2013
-
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
IE<9 does some truly messed-up things when it sees these. Another great JS feature banished for the foreseeable future by the bunglers in Redmont, sigh.
-
- Jan 25, 2013
-
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Closes #1183
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
The window.onresize handlers registered for each editor would prevent them from ever getting collected.
-
Jochen Berger authored
when checking whether the wrapper element is still part of the DOM, check all the way up to the document body
-
Marijn Haverbeke authored
-
- Jan 23, 2013
-
-
Marijn Haverbeke authored
Issue #1178
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
These fire when the marker is removed/resurrected by editing and undo operations. Closes #1093
-
Ice White authored
-
Marijn Haverbeke authored
Closes #1176
-
Danny Yoo authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Issue #1164
-
Marijn Haverbeke authored
Operating on line widgets from within an operation would cause crashes.
-
- Jan 22, 2013
-
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Add test.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Yunchi Luo authored
-
- Jan 21, 2013
-
-
Marijn Haverbeke authored
-
Adam King authored
When the matching symbol of a closing bracket is on a different line, it will match to the incorrect opening bracket. For example, go to http://codemirror.net/demo/vim.html and place the cursor on the closing brace at line 11 and press '%'. It will incorrectly match the opening brace on line 4 instead of the brace on line 8. This patch fixes that by starting the line search at the *end* of the line when searching backwards.
-
Marijn Haverbeke authored
Stop passing 'true' as a changeset to updateDisplay, simplify a bunch of things.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Irakli Gozalishvili authored
`makeChangeSingleDocInEditor` was throwing exceptions because of the typo.
-
Marijn Haverbeke authored
The mark would disappear into thin air if it was on a line affected by the undo (or redo). Now it is properly preserved.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Add docs for first-class document features, split API section into subsections to make it easier to read.
-
Marijn Haverbeke authored
- Move a lot of methods from the CodeMirror to the Doc prototype - Allow getting, attaching, and copying of Doc objects - Add linkedDoc to create documents that stay in sync - Allow such linked docs to be sub-view on their parent - Rewrite history handling - Remove the concept of a view Documentation still failing.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Issue #1166
-
Peter Kroon authored
Append image to wrapper. No more appending to document. Works with multiple editors. Tested: 3 editors beneath each other on 1 page.
-
Adam King authored
-