We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1021c95 commit 59ec399Copy full SHA for 59ec399
1 file changed
src/Views/tickets/show/script.blade.php
@@ -117,11 +117,11 @@
117
118
// Highlight related comment when showing related modal
119
$('.jquery_panel_hightlight').on('show.bs.modal', function (e) {
120
- $(e.relatedTarget).closest('div.panel').addClass('card-highlight');
+ $(e.relatedTarget).closest('div.card').addClass('card-highlight');
121
});
122
123
$('.jquery_panel_hightlight').on('hidden.bs.modal', function (e) {
124
- $('div.panel').removeClass('card-highlight');
+ $('div.card').removeClass('card-highlight');
125
126
127
$('#new_comment_submit').click(function(e){
0 commit comments