Defect #34998
closed
Cannot open journal dropdown menu after editing note
Added by Mizuki ISHIKAWA over 3 years ago.
Updated over 3 years ago.
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
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");
Mizuki, one question, why not binding directly on document?
- Target version set to 4.2.1
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");
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the fix. Thank you.
Also available in: Atom
PDF