15 lines
589 B
Plaintext
15 lines
589 B
Plaintext
hideModal();
|
|
<% if @has_commit %>
|
|
var htmlvalue = '<%= escape_javascript(render :partial => 'contestant_works/has_commit_work') %>';
|
|
pop_box_new(htmlvalue, 500, 163);
|
|
<% elsif @submit_result%>
|
|
var htmlvalue = '<%= escape_javascript(render :partial => 'contestant_works/work_information') %>';
|
|
pop_box_new(htmlvalue, 500, 400);
|
|
<% else %>
|
|
window.location.href = '<%= new_contestant_work_path(:work => @contestwork.id)%>';
|
|
<% end %>
|
|
|
|
function clickCanel() {
|
|
hideModal('#popbox02');
|
|
window.location.href = '<%= contestant_works_path(:work => @contestwork.id)%>';
|
|
} |