Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2893786
D25072.1737227013.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
901 B
Referenced Files
None
Subscribers
None
D25072.1737227013.diff
View Options
diff --git a/webroot/rsrc/js/application/projects/WorkboardController.js b/webroot/rsrc/js/application/projects/WorkboardController.js
--- a/webroot/rsrc/js/application/projects/WorkboardController.js
+++ b/webroot/rsrc/js/application/projects/WorkboardController.js
@@ -151,6 +151,13 @@
},
_onaddcard: function(e) {
+
+ // Allow CTRL+click and maybe other actions
+ if(!e.isNormalMouseEvent()) {
+ e.stop();
+ return;
+ }
+
// We want the 'boards-dropdown-menu' behavior to see this event and
// close the dropdown, but don't want to follow the link.
e.prevent();
@@ -176,6 +183,13 @@
},
_oneditcard: function(e) {
+
+ // Allow CTRL+click and maybe other actions
+ if(!e.isNormalMouseEvent()) {
+ e.stop();
+ return;
+ }
+
e.kill();
var column_node = e.getNode('project-column');
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jan 18, 19:03 (11 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1108669
Default Alt Text
D25072.1737227013.diff (901 B)
Attached To
Mode
D25072: Workboard: fix CTRL+click on "Create Task" and "Edit Task"
Attached
Detach File
Event Timeline
Log In to Comment