}
</script>
- <style>
- #recent-history-list imgs {
- float: left;
- }
- </style>
-
<li>
<a href="#" onclick="if (sonarRecentHistory) { sonarRecentHistory.populateRecentHistoryPanel(); }; $j('#projects-menu').toggle(); return false;" class="link-more"><%= message('layout.projects') -%></a>
</ul>
</div>
- <div>
+ <div style="border-top: 1px solid #ccc; margin-top: 10px;">
<ul>
<li><a href="<%= ApplicationController.root_context -%>/">Projects</a></li>
<li><a href="<%= ApplicationController.root_context -%>/">Views</a></li>
$j('#recent-history').detach();
} else {
sonarRecentHistory.add('<%= @resource ? @resource.key : "" -%>',
- '<%= @resource ? @resource.name(true) : "" -%>',
+ '<%= @resource ? @resource.name : "" -%>',
'<%= @resource ? Api::Utils.java_facade.getResourceType(@resource.qualifier).getIconPath() : "" -%>');
}
</script>
\ No newline at end of file
<script>
if (sonarRecentHistory != null) {
sonarRecentHistory.add('<%= @resource.key -%>',
- '<%= @resource.name(true) -%>',
+ '<%= @resource.name -%>',
'<%= @resource ? Java::OrgSonarServerUi::JRubyFacade.getInstance().getResourceType(@resource.qualifier).getIconPath() : "" -%>');
}
</script>