Select the types of activity you want to include in your feed.
@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
···11+<?php
22+/**
33+ * This file is automatically generated. Lint this module to rebuild it.
44+ * @generated
55+ */
66+77+88+99+phutil_require_module('phabricator', 'view/base');
1010+1111+1212+phutil_require_source('DifferentialInlineCommentView.php');
···26842684 * @task stratcom
26852685 * @param Node The node to listen for events underneath.
26862686 * @param string|list One or more event types to listen for.
26872687- * @param list? A path to listen on.
26872687+ * @param list? A path to listen on, or a list of paths.
26882688 * @param function Callback to invoke when a matching event occurs.
26892689 * @return object A reference to the installed listener. You can later
26902690 * remove the listener by calling this object's remove()
26912691 * method.
26922692 */
26932693 listen : function(node, type, path, callback) {
26942694- return JX.Stratcom.listen(
26952695- type,
26962696- ['id:'+JX.DOM.uniqID(node)].concat(JX.$AX(path || [])),
26972697- callback);
26942694+ var id = ['id:' + JX.DOM.uniqID(node)];
26952695+ path = JX.$AX(path || []);
26962696+ for (var ii = 0; ii < path.length; ii++) {
26972697+ path[ii] = id.concat(JX.$AX(path[ii]));
26982698+ }
26992699+ return JX.Stratcom.listen(type, path, callback);
26982700 },
2699270127002702 uniqID : function(node) {
+2-1
webroot/rsrc/js/javelin/workflow.dev.js
···111111 if (JX.Workflow._disabled) {
112112 return;
113113 }
114114+114115 var t = event.getTarget();
115116 if (t.name == '__cancel__' || t.name == '__close__') {
116117 JX.Workflow._pop();
···152153 JX.DOM.listen(
153154 this._root,
154155 'click',
155155- 'tag:button',
156156+ [['jx-workflow-button'], ['tag:button']],
156157 JX.Workflow._onbutton);
157158 document.body.appendChild(this._root);
158159 var d = JX.$V.getDim(this._root);