use twitter/typeahead for autocomplete. make go to project|context|tag work and show

project details in a popover
This commit is contained in:
Reinier Balt 2013-08-07 23:31:28 +02:00
parent 31386db3df
commit c0edd1749c
19 changed files with 1924 additions and 187 deletions

View file

@ -8,12 +8,6 @@ module ProjectsHelper
end
end
def show_project_settings(project)
content_tag(:div, :id => dom_id(project, "container"), :class=>"list") do
render :partial => "projects/project_settings", :object => project
end
end
def project_next_prev
content_tag(:div, :id=>"project-next-prev") do
html = ""
@ -49,7 +43,7 @@ module ProjectsHelper
end
def link_to_edit_project (project, descriptor = sanitize(project.name))
link_to_edit(:project, project, descriptor)
link_to_edit(:project, project, descriptor).sub!('"',"'")
end
end