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

Commit 8217b3b

Browse files
committed
Merge remote-tracking branch 'origin' into rlim/update-codemirror
2 parents 57e21a7 + e337d24 commit 8217b3b

27 files changed

Lines changed: 288 additions & 12681 deletions

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ Not sure you needed the exclamation point there, but we like your enthusiasm.
105105

106106
#### What's Brackets working on next?
107107

108-
* In our [feature backlog](http://bit.ly/BracketsBacklog), the columns labeled "Sprint N"
109-
are features already in progress and should ship within 2 weeks. Features at the top of
110-
the "Product Backlog" list will come next.
108+
* In our [feature backlog](http://bit.ly/BracketsBacklog), the columns to the right
109+
(starting from "Development") list the features that we're currently working on.
110+
"Ready" shows what we'll be working on next.
111111
* Watch our [GitHub activity stream](https://github.com/adobe/brackets/pulse).
112112

113113
#### Contact info

src/LiveDevelopment/Agents/RemoteFunctions.js

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -254,27 +254,26 @@ function RemoteFunctions(experimental) {
254254
"border-bottom-right-radius": styles.borderBottomRightRadius,
255255
"border-style": "solid",
256256
"border-width": "1px",
257-
"border-color": "rgb(94,167,255)",
257+
"border-color": "#00a2ff",
258+
"box-shadow": "0 0 1px #fff",
258259
"box-sizing": "border-box"
259260
};
260261

261262
var animateStartValues = {
262-
"opacity": 0,
263-
"background": "rgba(94,167,255, 0.5)",
264-
"box-shadow": "0 0 6px 1px rgba(94,167,255, 0.6), inset 0 0 4px 1px rgba(255,255,255,1)"
263+
"background-color": "rgba(0, 162, 255, 0.5)",
264+
"opacity": 0
265265
};
266266

267267
var animateEndValues = {
268-
"opacity": 1,
269-
"background": "rgba(94,167,255, 0.1)",
270-
"box-shadow": "0 0 1px 0 rgba(94,167,255, 0), inset 0 0 4px 1px rgba(255,255,255,0.8)"
268+
"background-color": "rgba(0, 162, 255, 0)",
269+
"opacity": 1
271270
};
272271

273272
var transitionValues = {
274-
"-webkit-transition-property": "opacity, box-shadow, background",
275-
"-webkit-transition-duration": "0.3s, 0.4s, 0.4s",
276-
"transition-property": "opacity, box-shadow, background",
277-
"transition-duration": "0.3s, 0.4s, 0.4s"
273+
"-webkit-transition-property": "opacity, background-color",
274+
"-webkit-transition-duration": "300ms, 2.3s",
275+
"transition-property": "opacity, background-color",
276+
"transition-duration": "300ms, 2.3s"
278277
};
279278

280279
function _setStyleValues(styleValues, obj) {

src/editor/Editor.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ define(function (require, exports, module) {
212212
// (if makeMasterEditor, we attach the Doc back to ourselves below once we're fully initialized)
213213

214214
this._inlineWidgets = [];
215+
this._inlineWidgetQueues = {};
216+
this._hideMarks = [];
217+
215218
this._$messagePopover = null;
216219

217220
// Editor supplies some standard keyboard behavior extensions of its own
@@ -1984,14 +1987,14 @@ define(function (require, exports, module) {
19841987
* @type {Object}
19851988
* Promise queues for inline widgets being added to a given line.
19861989
*/
1987-
Editor.prototype._inlineWidgetQueues = {};
1990+
Editor.prototype._inlineWidgetQueues = null;
19881991

19891992
/**
19901993
* @private
19911994
* @type {Array}
19921995
* A list of objects corresponding to the markers that are hiding lines in the current editor.
19931996
*/
1994-
Editor.prototype._hideMarks = [];
1997+
Editor.prototype._hideMarks = null;
19951998

19961999
/**
19972000
* @private

src/extensions/default/CSSShapesEditor/LiveEditorLocalDriver.js

Lines changed: 0 additions & 321 deletions
This file was deleted.

0 commit comments

Comments
 (0)