Remove dead code.

This code is no longer used in the system.
This commit is contained in:
Matt Rogers 2011-12-02 22:18:32 -06:00
parent 64cf5336c1
commit 6599b11628

View file

@ -2,12 +2,6 @@ function html_for_edit_form() {
return "<%= escape_javascript(render(:partial => 'project_form', :object => @project)) %>";
}
function remove_edit_form() {
$('div#<%= dom_id(@project, 'edit') %>').fadeOut(250, function() {
$('div#<%= dom_id(@project) %>').fadeIn(250);
});
}
function show_edit_form() {
$('div#<%=dom_id(@project, 'edit')%>').html(html_for_edit_form());
$('div#<%=dom_id(@project, 'edit')%>').fadeIn(500);