From 09c84ef65ecc5ff4ace125477981c4f11cfbd36e Mon Sep 17 00:00:00 2001 From: Akiko Takano Date: Sun, 6 Jul 2014 01:33:59 +0900 Subject: [PATCH] Fixed #52 / Change to correct format for title attribute. --- app/views/global_issue_templates/index.html.erb | 2 +- app/views/issue_templates/index.html.erb | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/global_issue_templates/index.html.erb b/app/views/global_issue_templates/index.html.erb index 35beee9..680ec64 100644 --- a/app/views/global_issue_templates/index.html.erb +++ b/app/views/global_issue_templates/index.html.erb @@ -40,7 +40,7 @@ title: issue_template.title, tooltip: issue_template.note %> <%= link_to h(issue_template.title), {:controller => 'global_issue_templates', :id => issue_template.id, :action => 'show'}, - title: "#{html_escape(issue_template.note)}" %> + {:title => "#{html_escape(issue_template.note)}"} %> <%=h issue_template.tracker.name %> diff --git a/app/views/issue_templates/index.html.erb b/app/views/issue_templates/index.html.erb index 7d02154..a2028a4 100644 --- a/app/views/issue_templates/index.html.erb +++ b/app/views/issue_templates/index.html.erb @@ -48,7 +48,7 @@ :action => 'show', :id => issue_template.id, :project_id => @project}, {:title => issue_template.note } %> <%= link_to h(issue_template.title), {:controller => 'issue_templates', :id => issue_template.id, :action => 'show'}, - title: "#{html_escape(issue_template.note)}" %> + {:title => "#{html_escape(issue_template.note)}"} %> @@ -116,7 +116,7 @@ :project_id => issue_template.project_id }, {:title => issue_template.note } %> <%= link_to h(issue_template.title), {:controller => 'issue_templates', :id => issue_template.id, :action => 'show'}, - title: "#{html_escape(issue_template.note)}" %> + {:title => "#{html_escape(issue_template.note)}"} %> @@ -168,7 +168,7 @@ <%= link_to h(issue_template.title), {:controller => 'global_issue_templates', :id => issue_template.id, :action => 'show'}, - title: "#{html_escape(issue_template.note)}" %> + {:title => "#{html_escape(issue_template.note)}"} %>