Skip to content

Commit

Permalink
Sector Nord AG: Fixed CTRL+left click in ticket overviews. (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZTrotter authored and NiklasSchmitt committed Nov 6, 2023
1 parent 632af8c commit fecfeeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions var/httpd/htdocs/js/Core.Agent.Overview.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ Core.Agent.Overview = (function (TargetNS) {
// only act if the link was not clicked directly
if (Event.target !== $MasterActionLink.get(0)) {
if (Event.ctrlKey || Event.metaKey) {
Core.UI.Popup.open($MasterActionLink.attr('href'));
Core.UI.Popup.OpenPopup($MasterActionLink.attr('href'));
}
else {
window.location = $MasterActionLink.attr('href');
Expand Down Expand Up @@ -365,7 +365,7 @@ Core.Agent.Overview = (function (TargetNS) {
// only act if the link was not clicked directly
if (Event.target !== $MasterActionLink.get(0)) {
if (Event.ctrlKey || Event.metaKey) {
Core.UI.Popup.open($MasterActionLink.attr('href'));
Core.UI.Popup.OpenPopup($MasterActionLink.attr('href'));
}
else {
window.location = $MasterActionLink.attr('href');
Expand Down Expand Up @@ -509,7 +509,7 @@ Core.Agent.Overview = (function (TargetNS) {
// only act if the link was not clicked directly
if (Event.target !== $MasterActionLink.get(0)) {
if (Event.ctrlKey || Event.metaKey) {
Core.UI.Popup.open($MasterActionLink.attr('href'));
Core.UI.Popup.OpenPopup($MasterActionLink.attr('href'));
}
else {
window.location = $MasterActionLink.attr('href');
Expand Down

0 comments on commit fecfeeb

Please sign in to comment.