Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9407 from MarcelGerber/codemirror-org
Browse files Browse the repository at this point in the history
Change links to use new codemirror organization
  • Loading branch information
peterflynn committed Oct 2, 2014
2 parents 27e6c5a + 41d560c commit b7e59f0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Awesome! _There are lots of ways you can help._ First read
then learn how to [pull the repo and hack on Brackets](https://github.com/adobe/brackets/wiki/How-to-Hack-on-Brackets).

The text editor inside Brackets is based on
[CodeMirror](http://github.com/marijnh/CodeMirror)—thanks to Marijn for
[CodeMirror](http://github.com/codemirror/CodeMirror)—thanks to Marijn for
taking our pull requests, implementing feature requests and fixing bugs! See
[Notes on CodeMirror](https://github.com/adobe/brackets/wiki/Notes-on-CodeMirror)
for info on how we're using CodeMirror.
Expand Down
2 changes: 1 addition & 1 deletion src/editor/InlineTextEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ define(function (require, exports, module) {
// Update display of inline editors when the hostEditor signals a redraw
CodeMirror.on(this.info, "redraw", function () {
// At the point where we get the redraw, CodeMirror might not yet have actually
// re-added the widget to the DOM. This is filed as https://github.com/marijnh/CodeMirror/issues/1226.
// re-added the widget to the DOM. This is filed as https://github.com/codemirror/CodeMirror/issues/1226.
// For now, we can work around it by doing the refresh on a setTimeout().
window.setTimeout(function () {
if (self.editor) {
Expand Down
2 changes: 1 addition & 1 deletion src/view/WorkspaceManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ define(function (require, exports, module) {
return;
}

// FIXME (issue #4564) Workaround https://github.com/marijnh/CodeMirror/issues/1787
// FIXME (issue #4564) Workaround https://github.com/codemirror/CodeMirror/issues/1787
triggerUpdateLayout();

if (!windowResizing) {
Expand Down
4 changes: 2 additions & 2 deletions test/spec/InlineEditorProviders-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1373,8 +1373,8 @@ define(function (require, exports, module) {
});
expect(inlineEditor).toHaveInlineEditorRange(toRange(start.line, end.line + 2));

// TODO: can't do our usual undo + re-check range test at the end, becuase of
// marijnh/CodeMirror2 bug #487
// TODO: can't do our usual undo + re-check range test at the end, because of
// codemirror/CodeMirror bug #487
});


Expand Down

0 comments on commit b7e59f0

Please sign in to comment.