]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1362951 - CC list implies there's a drop-down menu, but clicking the dropdown...
authorKohei Yoshino <kohei.yoshino@gmail.com>
Thu, 13 Jun 2019 16:18:28 +0000 (12:18 -0400)
committerGitHub <noreply@github.com>
Thu, 13 Jun 2019 16:18:28 +0000 (12:18 -0400)
extensions/BugModal/web/bug_modal.js

index 5818d7c9869d3bd54c469b043738c932dae8355c..9a33a7aae154b30a8a727b9544f2f3cf03a4a748 100644 (file)
@@ -282,6 +282,11 @@ $(function() {
                         $('#ccr-' + $(this).data('n')).css('visibility', 'hidden');
                     }
                 );
+                $('#cc-list .show_usermenu').click(function() {
+                    const $this = $(this);
+                    return show_usermenu($this.data('user-id'), $this.data('user-email'), $this.data('show-edit'),
+                        $this.data('hide-profile'));
+                });
                 $('#cc-list .cc-remove')
                     .click(function(event) {
                         event.preventDefault();