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

Don't send a new query if the keydown doesn't edit the query value, i.e. command-tab or shift.

+8
+8
webroot/rsrc/js/application/core/behavior-object-selector.js
··· 20 20 'input', 21 21 'aphront-dialog-application-input'); 22 22 23 + var last_value = JX.$(config.query).value; 24 + 23 25 function onreceive(seq, r) { 24 26 if (seq != n) { 25 27 return; ··· 161 163 'keydown', 162 164 null, 163 165 function(e) { 166 + var cur_value = JX.$(config.query).value; 167 + if (last_value == cur_value) { 168 + return; 169 + } 170 + last_value = cur_value; 171 + 164 172 if (query_timer) { 165 173 query_timer.stop(); 166 174 }