Skip to content

Commit

Permalink
Issue #282: Hide other popup when opening TicketInformation popup or …
Browse files Browse the repository at this point in the history
…More popup
  • Loading branch information
stefanhaerter committed Jan 26, 2024
1 parent 318271c commit 2727371
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions var/httpd/htdocs/js/Core.Customer.TicketZoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ Core.Customer.TicketZoom = (function (TargetNS) {

// info button toggle info on click
$('#oooHeader .oooInfo').on('click', function() {
$('#oooMore').hide();
if ( $(window).width() > 519 ) {
$('#oooTicketInfo').css({top: 80, right: 40}).toggle();
}
Expand All @@ -372,6 +373,7 @@ Core.Customer.TicketZoom = (function (TargetNS) {

// more button toggle further actions on click
$('#oooHeader .ooofo-more_v').on('click', function() {
$('#oooTicketInfo').hide();
if ( $(window).width() > 519 ) {
$('#oooMore').css({top: 80, right: 40}).toggle();
}
Expand Down

0 comments on commit 2727371

Please sign in to comment.