@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Resize the Differential keyboard focus reticle when the window is resized

Summary: Fixes T12632. Ref T12634. Currently, the keyboard focus reticle does not redraw properly after a window resize.

Test Plan:
- Used "n" to select a block.
- Resized the window.
- Saw the reticle also resize properly.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12634, T12632

Differential Revision: https://secure.phabricator.com/D17901

+13 -6
+6 -6
resources/celerity/map.php
··· 13 13 'core.pkg.js' => '115cb4da', 14 14 'darkconsole.pkg.js' => '1f9a31bc', 15 15 'differential.pkg.css' => '58712637', 16 - 'differential.pkg.js' => 'd831041b', 16 + 'differential.pkg.js' => '14ef6888', 17 17 'diffusion.pkg.css' => 'b93d9b8c', 18 18 'diffusion.pkg.js' => '84c8f8fd', 19 19 'favicon.ico' => '30672e08', ··· 391 391 'rsrc/js/application/dashboard/behavior-dashboard-query-panel-select.js' => '453c5375', 392 392 'rsrc/js/application/dashboard/behavior-dashboard-tab-panel.js' => 'd4eecc63', 393 393 'rsrc/js/application/diff/DiffChangeset.js' => 'f7100923', 394 - 'rsrc/js/application/diff/DiffChangesetList.js' => 'c457058f', 394 + 'rsrc/js/application/diff/DiffChangesetList.js' => 'e5c5e171', 395 395 'rsrc/js/application/diff/DiffInline.js' => '00db3c3a', 396 396 'rsrc/js/application/diff/behavior-preview-link.js' => '051c7832', 397 397 'rsrc/js/application/differential/behavior-comment-jump.js' => '4fdb476d', ··· 782 782 'phabricator-darkmessage' => 'c48cccdd', 783 783 'phabricator-dashboard-css' => 'fe5b1869', 784 784 'phabricator-diff-changeset' => 'f7100923', 785 - 'phabricator-diff-changeset-list' => 'c457058f', 785 + 'phabricator-diff-changeset-list' => 'e5c5e171', 786 786 'phabricator-diff-inline' => '00db3c3a', 787 787 'phabricator-drag-and-drop-file-upload' => '58dea2fa', 788 788 'phabricator-draggable-list' => 'bea6e7f4', ··· 1922 1922 'javelin-stratcom', 1923 1923 'phabricator-tooltip', 1924 1924 ), 1925 - 'c457058f' => array( 1926 - 'javelin-install', 1927 - ), 1928 1925 'c587b80f' => array( 1929 1926 'javelin-install', 1930 1927 ), ··· 2139 2136 'javelin-json', 2140 2137 'javelin-workflow', 2141 2138 'javelin-magical-init', 2139 + ), 2140 + 'e5c5e171' => array( 2141 + 'javelin-install', 2142 2142 ), 2143 2143 'e9581f08' => array( 2144 2144 'javelin-behavior',
+7
webroot/rsrc/js/application/diff/DiffChangesetList.js
··· 47 47 'click', 48 48 ['differential-inline-comment', 'differential-inline-reply'], 49 49 onreply); 50 + 51 + var onresize = JX.bind(this, this._ifawake, this._onresize); 52 + JX.Stratcom.listen('resize', null, onresize); 50 53 }, 51 54 52 55 properties: { ··· 582 585 var inline = this._getInlineForEvent(e); 583 586 584 587 inline.setHidden(is_hide); 588 + }, 589 + 590 + _onresize: function() { 591 + this._redrawFocus(); 585 592 }, 586 593 587 594 _onaction: function(action, e) {