Fixed #52 / Change to correct format for title attribute.

This commit is contained in:
Akiko Takano
2014-07-06 01:33:59 +09:00
parent 7f8ab19831
commit 09c84ef65e
2 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@
title: issue_template.title, tooltip: issue_template.note %></td>
<td><%= 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)}"} %>
<a class="icon template_tooltip" href="#" title="<%= l(:label_preview) %>"
onclick="checkExpand('global_template_description-<%= issue_template.id %>');"></a></td>
<td><%=h issue_template.tracker.name %></td>

View File

@@ -48,7 +48,7 @@
:action => 'show', :id => issue_template.id, :project_id => @project}, {:title => issue_template.note } %></td>
<td><%= 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)}"} %>
<a class="icon template_tooltip" href="#" title="<%= l(:label_preview) %>"
onclick="checkExpand('template_description-<%= issue_template.id %>');"></a>
@@ -116,7 +116,7 @@
:project_id => issue_template.project_id }, {:title => issue_template.note } %></td>
<td><%= 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)}"} %>
<a class="icon template_tooltip" href="#" title="<%= l(:label_preview) %>"
onclick="checkExpand('template_description-<%= issue_template.id %>');"></a>
@@ -168,7 +168,7 @@
<td>
<%= 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)}"} %>
<a class="icon template_tooltip" href="#" title="<%= l(:label_preview) %>"
onclick="checkExpand('global_template_description-<%= issue_template.id %>');"></a>
</td>