You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
488 B
8 lines
488 B
6 years ago
|
<% if @course %>
|
||
|
$("#course_board_settings").html("<%= j(render :partial => 'courses/course_board_settings') %>");
|
||
|
<% elsif @contest %>
|
||
|
hideModal();
|
||
|
$("#game-setting-content-3").html("<%=escape_javascript(render :partial => 'contests/boards') %>");
|
||
|
<% contest_board = @contest.boards.where(:parent_id => 0).first %>
|
||
|
$("#board_children_list").html("<%= escape_javascript(render :partial => 'layouts/contest_board_children_list', :locals => {:contest_board => contest_board})%>");
|
||
|
<% end %>
|