template=Template
title=Title
to=To
+to.downcase=to
treemap=Treemap
true=True
type=Type
<li><%= message('assigned_to') -%> <strong><%= h @issue_results.user(issue.assignee).name -%></strong></li>
<% end %>
<% elsif current_user %>
- <li><a href='#' onclick="return issueForm('assign', this)" class="link-action"><%= message('issue.assign.formlink') -%></a></li>
- <% if issue.assignee != current_user.login %>
- <li>[<a href="#" onclick="return assignIssueToMe(this)" class="link-action"><%= message('issue.assign.to_me') -%></a>]</li>
- <% end %>
+ <li>
+ <a href='#' onclick="return issueForm('assign', this)" class="link-action"><%= message('issue.assign.formlink') -%></a>
+ <% if issue.assignee != current_user.login %>
+ [<a href="#" onclick="return assignIssueToMe(this)" class="link-action"><%= message('issue.assign.to_me') -%></a>]
+ <% end %>
+ </li>
<% end %>
<% if issue.actionPlanKey %>
<% if current_user %>
'all': '<%= escape_javascript message('all') -%>',
'edit': '<%= escape_javascript message('edit') -%>',
'delete': '<%= escape_javascript message('delete') -%>',
- 'to': '<%= escape_javascript message('to') -%>',
+ 'to': '<%= escape_javascript message('to.downcase') -%>',
'project': '<%= escape_javascript message('issue_filter.criteria.project') -%>',
'severity': '<%= escape_javascript message('issue_filter.criteria.severity') -%>',
'severities': {
'anytime': '<%= escape_javascript message('anytime') -%>',
'all': '<%= escape_javascript message('all') -%>',
'manage': '<%= escape_javascript message('manage') -%>',
- 'to': '<%= escape_javascript message('to') -%>',
+ 'to': '<%= escape_javascript message('to.downcase') -%>',
'value': '<%= escape_javascript message('value') -%>',
'components': '<%= escape_javascript message('measure_filter.criteria.components') -%>',
'age': '<%= escape_javascript message('measure_filter.criteria.age') -%>',
onRender: function() {
+ var format = function(state) {
+ if (!state.id) return state.text; // optgroup
+ return '<i class="icon-severity-' + state.id.toLowerCase() + '"></i>' + state.text;
+ }
+
this.ui.select.select2({
- minimumResultsForSearch: 100
+ minimumResultsForSearch: 100,
+ formatResult: format,
+ formatSelection: format,
+ escapeMarkup: function(m) { return m; }
});
},
position: relative;
}
.navigator-fetching#tab-issue-rule:before {
+ z-index: 3;
background-color: #EFEFEF;
}
.navigator-fetching.code-issue-actions {
position: relative;
}
.navigator-fetching.code-issue-actions:before {
+ z-index: 3;
background-color: #E4ECF3;
}
.navigator-header {
.navigator-details .source {
padding-right: 10px;
}
-.navigator-details .source table {
+.navigator-details .source > table {
border: 1px solid #DDD;
}
.navigator-details .scm .author {
position: relative;
}
.navigator-fetching#tab-issue-rule:before {
+ z-index: 3;
background-color: #EFEFEF;
}
.navigator-fetching.code-issue-actions {
position: relative;
}
.navigator-fetching.code-issue-actions:before {
+ z-index: 3;
background-color: #E4ECF3;
}
.navigator-header {
.navigator-details .source {
padding-right: 10px;
}
-.navigator-details .source table {
+.navigator-details .source > table {
border: 1px solid #DDD;
}
.navigator-details .scm .author {
position: relative;
&:before {
+ z-index: 3;
background-color: #EFEFEF;
}
}
position: relative;
&:before {
+ z-index: 3;
background-color: #E4ECF3;
}
}
.source {
padding-right: 10px;
- table {
+ & > table {
border: 1px solid #DDD;
}
}