Defect #34998
closedCannot open journal dropdown menu after editing note
0%
Description
After rewriting the journal note, clicking the journal dropdown does not open the menu. Reloading will fix the menu to open.
Updating the journal note runs the following code to redraw the journal actions. The problem is that the .drdn-trigger click event is not set in the dropdown that was redrawn at that time.
// https://www.redmine.org/projects/redmine/repository/revisions/20875/entry/trunk/app/views/journals/update.js.erb#L5
$("#change-<%= @journal.id %> .journal-actions").html('<%= escape_javascript(render_journal_actions(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))) %>');
Related to #34714.
Files
Updated by Mizuki ISHIKAWA over 3 years ago
The following changes will resolve the issue.
diff --git a/public/javascripts/application.js b/public/javascripts/application.js
index e60425cae..4bb9d9551 100644
--- a/public/javascripts/application.js
+++ b/public/javascripts/application.js
@@ -722,7 +722,7 @@ $(document).ready(function(){
// This variable is used to focus selected project
var selected;
- $(".drdn-trigger").click(function(e){
+ $('#content, #header').on('click', '.drdn-trigger', function(e){
var drdn = $(this).closest(".drdn");
if (drdn.hasClass("expanded")) {
drdn.removeClass("expanded");
Updated by Marius BĂLTEANU over 3 years ago
Mizuki, one question, why not binding directly on document?
Updated by Mizuki ISHIKAWA over 3 years ago
Marius BALTEANU wrote:
Mizuki, one question, why not binding directly on document?
I used "#content, #header" because I thought it was better to narrow down the selector as much as possible.
However, since $("#content, #header") contains almost all elements of Redmine, I think it makes no difference to change $("#content, #header") to $(document).
diff --git a/public/javascripts/application.js b/public/javascripts/application.js
index e60425cae..1bc228236 100644
--- a/public/javascripts/application.js
+++ b/public/javascripts/application.js
@@ -722,7 +722,7 @@ $(document).ready(function(){
// This variable is used to focus selected project
var selected;
- $(".drdn-trigger").click(function(e){
+ $(document).on('click', '.drdn-trigger', function(e){
var drdn = $(this).closest(".drdn");
if (drdn.hasClass("expanded")) {
drdn.removeClass("expanded");
Updated by Go MAEDA over 3 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the fix. Thank you.