8 lines
339 B
Plaintext
8 lines
339 B
Plaintext
$("#contest_base_info").html('<%=escape_javascript(render :partial=>'contests/contest_base_info') %>');
|
|
if(document.getElementById("contest_is_public")) {
|
|
<% if !@contest.is_public %>
|
|
$("#contest_is_public").attr("checked",false);
|
|
<% elsif @contest.is_public %>
|
|
$("#contest_is_public").attr("checked",true);
|
|
<% end %>
|
|
} |