You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Merge remote-tracking branch 'origin/master' into pflynn/better-quicksearch-field
Reimplements the fixes from PR #9624 & #9153 in a simpler way: instead of
trying to selectively suppress ModalBar's scroll pos adjustments, in cases
where we need to revert scroll pos in one file, just wait until ModalBar is
done adjusting scroll pos and *then* reset the one we care about. Made
possible by the fact that we now listen for ModalBar's "close" event and
the event passes info on the reason for closing.
Removes delay before results list opens: in CEF 2171 it seems both unneeded
(animation is smooth without it) and it triggers an apparent Chrome bug where
the post-animation state is displayed during the delay period even though
the computed style reflects the pre-animation state.
Conflicts:
src/search/QuickOpen.js
src/styles/brackets.less
src/styles/brackets_colors.less
src/widgets/ModalBar.js
@@ -200,6 +218,8 @@ module.exports = function (grunt) {
200
218
'test/**/*.js',
201
219
'!test/perf/*-files/**/*.js',
202
220
'!test/spec/*-files/**/*.js',
221
+
'!test/spec/*-known-goods/**/*.js',
222
+
'!test/spec/FindReplace-test-files-*/**/*.js',
203
223
'!test/smokes/**',
204
224
'!test/temp/**',
205
225
'!test/thirdparty/**',
@@ -246,15 +266,16 @@ module.exports = function (grunt) {
246
266
specs : '<%= meta.specs %>',
247
267
/* Keep in sync with test/SpecRunner.html dependencies */
248
268
vendor : [
249
-
'src/thirdparty/jquery-2.1.0.min.js',
269
+
'test/polyfills.js',/* For reference to why this polyfill is needed see Issue #7951. The need for this should go away once the version of phantomjs gets upgraded to 2.0 */
0 commit comments