mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix "r" and "R" both replying with quote on inline comments
Summary: Ref T13513. The code which added "r" and "R" to the inline menu accidentally discarded the difference between the keystrokes. Test Plan: - Clicked an inline, pressed "r", got new empty inline (previously: inline with quote). - Clicked an inline, pressed "R", got a new quoted inline. - Repeated steps with the menu items, got the expected behaviors. Maniphest Tasks: T13513 Differential Revision: https://secure.phabricator.com/D21268
This commit is contained in:
parent
6cf017d680
commit
770a5c8412
2 changed files with 9 additions and 9 deletions
|
@ -13,7 +13,7 @@ return array(
|
||||||
'core.pkg.js' => '845355f4',
|
'core.pkg.js' => '845355f4',
|
||||||
'dark-console.pkg.js' => '187792c2',
|
'dark-console.pkg.js' => '187792c2',
|
||||||
'differential.pkg.css' => '42a2334f',
|
'differential.pkg.css' => '42a2334f',
|
||||||
'differential.pkg.js' => 'b57da3e7',
|
'differential.pkg.js' => '8f59bce2',
|
||||||
'diffusion.pkg.css' => '42c75c37',
|
'diffusion.pkg.css' => '42c75c37',
|
||||||
'diffusion.pkg.js' => 'a98c0bf7',
|
'diffusion.pkg.js' => 'a98c0bf7',
|
||||||
'maniphest.pkg.css' => '35995d6d',
|
'maniphest.pkg.css' => '35995d6d',
|
||||||
|
@ -380,7 +380,7 @@ return array(
|
||||||
'rsrc/js/application/dashboard/behavior-dashboard-query-panel-select.js' => '1e413dc9',
|
'rsrc/js/application/dashboard/behavior-dashboard-query-panel-select.js' => '1e413dc9',
|
||||||
'rsrc/js/application/dashboard/behavior-dashboard-tab-panel.js' => '0116d3e8',
|
'rsrc/js/application/dashboard/behavior-dashboard-tab-panel.js' => '0116d3e8',
|
||||||
'rsrc/js/application/diff/DiffChangeset.js' => '0c083409',
|
'rsrc/js/application/diff/DiffChangeset.js' => '0c083409',
|
||||||
'rsrc/js/application/diff/DiffChangesetList.js' => 'ac403c32',
|
'rsrc/js/application/diff/DiffChangesetList.js' => 'db615898',
|
||||||
'rsrc/js/application/diff/DiffInline.js' => 'b00168c1',
|
'rsrc/js/application/diff/DiffInline.js' => 'b00168c1',
|
||||||
'rsrc/js/application/diff/DiffPathView.js' => '8207abf9',
|
'rsrc/js/application/diff/DiffPathView.js' => '8207abf9',
|
||||||
'rsrc/js/application/diff/DiffTreeView.js' => '5d83623b',
|
'rsrc/js/application/diff/DiffTreeView.js' => '5d83623b',
|
||||||
|
@ -775,7 +775,7 @@ return array(
|
||||||
'phabricator-darkmessage' => '26cd4b73',
|
'phabricator-darkmessage' => '26cd4b73',
|
||||||
'phabricator-dashboard-css' => '5a205b9d',
|
'phabricator-dashboard-css' => '5a205b9d',
|
||||||
'phabricator-diff-changeset' => '0c083409',
|
'phabricator-diff-changeset' => '0c083409',
|
||||||
'phabricator-diff-changeset-list' => 'ac403c32',
|
'phabricator-diff-changeset-list' => 'db615898',
|
||||||
'phabricator-diff-inline' => 'b00168c1',
|
'phabricator-diff-inline' => 'b00168c1',
|
||||||
'phabricator-diff-path-view' => '8207abf9',
|
'phabricator-diff-path-view' => '8207abf9',
|
||||||
'phabricator-diff-tree-view' => '5d83623b',
|
'phabricator-diff-tree-view' => '5d83623b',
|
||||||
|
@ -1911,11 +1911,6 @@ return array(
|
||||||
'javelin-dom',
|
'javelin-dom',
|
||||||
'phabricator-notification',
|
'phabricator-notification',
|
||||||
),
|
),
|
||||||
'ac403c32' => array(
|
|
||||||
'javelin-install',
|
|
||||||
'phuix-button-view',
|
|
||||||
'phabricator-diff-tree-view',
|
|
||||||
),
|
|
||||||
'ad258e28' => array(
|
'ad258e28' => array(
|
||||||
'javelin-behavior',
|
'javelin-behavior',
|
||||||
'javelin-dom',
|
'javelin-dom',
|
||||||
|
@ -2124,6 +2119,11 @@ return array(
|
||||||
'javelin-uri',
|
'javelin-uri',
|
||||||
'phabricator-notification',
|
'phabricator-notification',
|
||||||
),
|
),
|
||||||
|
'db615898' => array(
|
||||||
|
'javelin-install',
|
||||||
|
'phuix-button-view',
|
||||||
|
'phabricator-diff-tree-view',
|
||||||
|
),
|
||||||
'e150bd50' => array(
|
'e150bd50' => array(
|
||||||
'javelin-behavior',
|
'javelin-behavior',
|
||||||
'javelin-stratcom',
|
'javelin-stratcom',
|
||||||
|
|
|
@ -342,7 +342,7 @@ JX.install('DiffChangesetList', {
|
||||||
var inline = cursor.target;
|
var inline = cursor.target;
|
||||||
if (inline.canReply()) {
|
if (inline.canReply()) {
|
||||||
this.setFocus(null);
|
this.setFocus(null);
|
||||||
inline.reply(true);
|
inline.reply(is_quote);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue