gitlabhq/app/views/projects/create.js.haml

12 lines
368 B
Plaintext
Raw Normal View History

- if @project.saved?
2011-10-08 23:36:38 +02:00
:plain
location.href = "#{project_path(@project, notice: 'Project was successfully created.')}";
2011-10-08 23:36:38 +02:00
- else
- if @project.git_error?
location.href = "#{errors_githost_path}";
-else
2011-10-08 23:36:38 +02:00
:plain
$('.project_new_holder').show();
$("#new_project").replaceWith("#{escape_javascript(render('new_form'))}");
2012-01-27 23:51:02 +01:00
$('.ajax_loader').hide();