From: Jean-Philippe Lang Date: Sat, 5 Jan 2013 12:34:20 +0000 (+0000) Subject: Use JSON so we don't have to parse data-rels manually (#3436). X-Git-Tag: 2.3.0~350 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=59ddbf8c09a730d042806c6b52db32e392a78c95;p=redmine.git Use JSON so we don't have to parse data-rels manually (#3436). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11119 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index 5bf0a1e98..3238de8cf 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -749,11 +749,7 @@ module Redmine :class => "#{options[:css]} task_todo", :id => html_id} if options[:issue] - rels_hash = {} - issue_relations(options[:issue]).each do |k, v| - rels_hash[k] = v.join(',') - end - content_opt[:data] = {"rels" => rels_hash} + content_opt[:data] = {"rels" => issue_relations(options[:issue]).to_json} end output << view.content_tag(:div, ' '.html_safe, content_opt) if coords[:bar_late_end] diff --git a/public/javascripts/gantt.js b/public/javascripts/gantt.js index e16f4028f..51e2257e0 100644 --- a/public/javascripts/gantt.js +++ b/public/javascripts/gantt.js @@ -19,14 +19,11 @@ function getRelationsArray() { var issue_id = element_id.replace("task-todo-issue-", ""); var data_rels = $(element).data("rels"); if (data_rels != null) { - for (rel_type_key in issue_relation_type) { - if (rel_type_key in data_rels) { - var issue_arr = data_rels[rel_type_key].toString().split(","); - $.each(issue_arr, function(index_issue, element_issue) { - arr.push({issue_from: issue_id, issue_to: element_issue, - rel_type: rel_type_key}); - }); - } + for (rel_type_key in data_rels) { + $.each(data_rels[rel_type_key], function(index_issue, element_issue) { + arr.push({issue_from: issue_id, issue_to: element_issue, + rel_type: rel_type_key}); + }); } } }