Skip to content

Commit

Permalink
Adjusted attachments dialog in ticket zoom.
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasSchmitt committed Oct 13, 2023
1 parent cc7bde8 commit 65be45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion var/httpd/htdocs/js/Core.Agent.TicketZoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ Core.Agent.TicketZoom = (function (TargetNS) {
var Position;
if ($(this).attr('rel') && $('#' + $(this).attr('rel')).length) {
Position = $(this).offset();
Core.UI.Dialog.ShowContentDialog($('#' + $(this).attr('rel'))[0].innerHTML, Core.Language.Translate('Attachments'), Position.top - $(window).scrollTop(), parseInt(Position.left, 10) + 25);
Core.UI.Dialog.ShowContentDialog($('#' + $(this).attr('rel'))[0].innerHTML, Core.Language.Translate('Attachments'), Position.top - $(window).scrollTop(), parseInt(Position.left, 10) - 250);
}
Event.preventDefault();
Event.stopPropagation();
Expand Down

0 comments on commit 65be45c

Please sign in to comment.