This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into tvoliter/issue-1278
* origin/master: (23 commits) - code review fixes - removed _removePopup() function since complexity of having this helper function isn't worth the savings of reusing the "index" var. I don't except their to be many visible popups at one time, so computing the index more than once isn't costly fixes issues #1270 #1271 #1272 Fix scope of beforeEach/afterEach Don't limit ourself in handling key events for html selection only. As we transit to js or css, we still need to dismiss the html code hints popup. Code review fixes. Revert menu focus change. use public document instead of private _codeMirror Fix issue #1240 (Inline editor background doesn't extend all the way to right when scrolling) - CodeMirror changed the way it props its width open such that lineSpace's width is no longer explicitly set to the max width of all the lines (lines wider than the viewport simply overflow it). We were checking this width to decide how wide inline editors must be. However, lineSpace's _content_ is still as wide as the max line (due to the pos of the new widthForcer div) so we can use lineSpace's scrollWidth and still get an accurate number. Move the long comment before the corresponding code. Code review fixes fix return key code code review fixes initial checkin Extract code hint query from tagInfo.tagName instead of extracting it directly from code mirror text using cursor position. Also fix an offset issue in HTMLUtils when the cursor is after white spaces and before a left angle bracket. Alternative fix for issue #1028. Add new file in working set, but keep it selected in the project tree since that is where the user created and named the file. remove debug code fix async loading of extensions. init jasmine after extension tests are loaded fix module loading for SpecRunnerUtils Additional comments in Menus.js for sections Adding function comment blocks to Menus.js remove empty menu section test ... Conflicts: src/widgets/PopUpManager.js
- Loading branch information
Showing
30 changed files
with
449 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[submodule "src/thirdparty/CodeMirror2"] | ||
path = src/thirdparty/CodeMirror2 | ||
url = git@github.com:adobe/CodeMirror2.git | ||
url = https://github.com/adobe/CodeMirror2.git | ||
[submodule "src/thirdparty/path-utils"] | ||
path = src/thirdparty/path-utils | ||
url = git@github.com:jblas/path-utils.git | ||
url = https://github.com/jblas/path-utils.git | ||
[submodule "src/thirdparty/jslint"] | ||
path = src/thirdparty/jslint | ||
url = git@github.com:douglascrockford/JSLint.git | ||
url = https://github.com/douglascrockford/JSLint.git | ||
[submodule "src/thirdparty/smart-auto-complete"] | ||
path = src/thirdparty/smart-auto-complete | ||
url = git@github.com:laktek/jQuery-Smart-Auto-Complete.git | ||
url = https://github.com/laktek/jQuery-Smart-Auto-Complete.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.