@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.

Wipe textarea immediately when submitting a new message in Conpherence

Summary: Fixes T11791. We do this in durable column, but not in regular Conpherence. I think this is the right place? Not sure how this will feel with high lag.

Test Plan: Submit lots of text in a Conpherence.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11791

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

+15 -14
+14 -14
resources/celerity/map.php
··· 10 10 'conpherence.pkg.css' => '0b64e988', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 12 'core.pkg.css' => '5b1fcbf1', 13 - 'core.pkg.js' => '9d208f10', 13 + 'core.pkg.js' => '795a0f8b', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 15 'differential.pkg.css' => 'a4ba74b5', 16 16 'differential.pkg.js' => '634399e9', ··· 378 378 'rsrc/js/application/calendar/behavior-event-all-day.js' => 'b41537c9', 379 379 'rsrc/js/application/calendar/behavior-month-view.js' => 'fe33e256', 380 380 'rsrc/js/application/config/behavior-reorder-fields.js' => 'b6993408', 381 - 'rsrc/js/application/conpherence/ConpherenceThreadManager.js' => '358c717b', 381 + 'rsrc/js/application/conpherence/ConpherenceThreadManager.js' => 'c8b5ee6f', 382 382 'rsrc/js/application/conpherence/behavior-conpherence-search.js' => '9bbf3762', 383 383 'rsrc/js/application/conpherence/behavior-durable-column.js' => 'aa3bd034', 384 384 'rsrc/js/application/conpherence/behavior-menu.js' => '7524fcfa', ··· 566 566 'conpherence-message-pane-css' => 'b085d40d', 567 567 'conpherence-notification-css' => '965db05b', 568 568 'conpherence-participant-pane-css' => 'ac1baaa8', 569 - 'conpherence-thread-manager' => '358c717b', 569 + 'conpherence-thread-manager' => 'c8b5ee6f', 570 570 'conpherence-transaction-css' => '85129c68', 571 571 'd3' => 'a11a5ff2', 572 572 'differential-changeset-view-css' => 'b158cc46', ··· 1157 1157 'javelin-dom', 1158 1158 'javelin-workflow', 1159 1159 ), 1160 - '358c717b' => array( 1161 - 'javelin-dom', 1162 - 'javelin-util', 1163 - 'javelin-stratcom', 1164 - 'javelin-install', 1165 - 'javelin-aphlict', 1166 - 'javelin-workflow', 1167 - 'javelin-router', 1168 - 'javelin-behavior-device', 1169 - 'javelin-vector', 1170 - ), 1171 1160 '3ab51e2c' => array( 1172 1161 'javelin-behavior', 1173 1162 'javelin-behavior-device', ··· 1974 1963 ), 1975 1964 'c7ccd872' => array( 1976 1965 'phui-fontkit-css', 1966 + ), 1967 + 'c8b5ee6f' => array( 1968 + 'javelin-dom', 1969 + 'javelin-util', 1970 + 'javelin-stratcom', 1971 + 'javelin-install', 1972 + 'javelin-aphlict', 1973 + 'javelin-workflow', 1974 + 'javelin-router', 1975 + 'javelin-behavior-device', 1976 + 'javelin-vector', 1977 1977 ), 1978 1978 'c90a04fc' => array( 1979 1979 'javelin-dom',
+1
webroot/rsrc/js/application/conpherence/ConpherenceThreadManager.js
··· 468 468 } 469 469 })); 470 470 this.syncWorkflow(workflow, 'finally'); 471 + textarea.value = ''; 471 472 472 473 this._willSendMessageCallback(); 473 474 },