mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-22 16:31:12 +00:00
git-svn-id: http://svn.redmine.org/redmine/trunk@16552 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
240 B
Plaintext
10 lines
240 B
Plaintext
<%
|
|
s = ''
|
|
if @projects.any?
|
|
s = render_projects_for_jump_box(@projects)
|
|
elsif params[:q].present?
|
|
s = content_tag('span', l(:label_no_data))
|
|
end
|
|
%>
|
|
$('#project-jump .drdn-items.projects').html('<%= escape_javascript s %>');
|