You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

autocomplete.js.erb 240B

123456789
  1. <%
  2. s = ''
  3. if @projects.any?
  4. s = render_projects_for_jump_box(@projects)
  5. elsif params[:q].present?
  6. s = content_tag('span', l(:label_no_data))
  7. end
  8. %>
  9. $('#project-jump .drdn-items.projects').html('<%= escape_javascript s %>');