Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13989383
D7566.id17080.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D7566.id17080.diff
View Options
Index: webroot/rsrc/js/application/maniphest/behavior-batch-selector.js
===================================================================
--- webroot/rsrc/js/application/maniphest/behavior-batch-selector.js
+++ webroot/rsrc/js/application/maniphest/behavior-batch-selector.js
@@ -41,6 +41,18 @@
update();
};
+ var redraw = function (task) {
+ var selected = is_selected(task);
+ change(task, selected);
+ };
+ JX.Stratcom.listen(
+ 'subpriority-changed',
+ null,
+ function (e) {
+ e.kill();
+ var data = e.getData();
+ redraw(data.task);
+ });
// Change all tasks to some state (used by "select all" / "clear selection"
// buttons).
Index: webroot/rsrc/js/application/maniphest/behavior-subpriorityeditor.js
===================================================================
--- webroot/rsrc/js/application/maniphest/behavior-subpriorityeditor.js
+++ webroot/rsrc/js/application/maniphest/behavior-subpriorityeditor.js
@@ -57,8 +57,11 @@
var nodes = JX.$H(r.tasks).getFragment().firstChild;
var task = JX.DOM.find(nodes, 'li', 'maniphest-task');
JX.DOM.replace(node, task);
-
draggable.unlock();
+ JX.Stratcom.invoke(
+ 'subpriority-changed',
+ null,
+ { 'task' : task });
};
new JX.Workflow(config.uri, data)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Oct 22, 8:05 PM (3 w, 3 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6713796
Default Alt Text
D7566.id17080.diff (1 KB)
Attached To
Mode
D7566: Maniphest - fix a bug when selecting all tasks and then dragging them around
Attached
Detach File
Event Timeline
Log In to Comment