|
|
|
@ -27,20 +27,30 @@
|
|
|
|
|
$("#what_is_project_div").slideToggle();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.onready = function()
|
|
|
|
|
{
|
|
|
|
|
<% if !@is_teacher && @homework_list.count > 0 && @bid.comment_status == 1%>
|
|
|
|
|
//登录者不是老师,且作业列表数目不为0,且作业处于开启匿评阶段
|
|
|
|
|
var alert_model = "'#ajax-modal'";
|
|
|
|
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'homework_attach/praise_alert') %>');
|
|
|
|
|
showModal('ajax-modal', '480px');
|
|
|
|
|
$('#ajax-modal').css('height','240px');
|
|
|
|
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
|
|
|
|
"<a href='#' onclick='hiddent_alert_model();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
|
|
|
|
$('#ajax-modal').parent().css("top","").css("left","").css("width","511");
|
|
|
|
|
$('#ajax-modal').parent().addClass("alert_praise");
|
|
|
|
|
<% end %>
|
|
|
|
|
}
|
|
|
|
|
$(document).ready(
|
|
|
|
|
function()
|
|
|
|
|
{
|
|
|
|
|
<% if !@is_teacher && @homework_list.count > 0 && @bid.comment_status == 1%>
|
|
|
|
|
//登录者不是老师,且作业列表数目不为0,且作业处于开启匿评阶段
|
|
|
|
|
var alert_model = "'#ajax-modal'";
|
|
|
|
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'homework_attach/praise_alert') %>');
|
|
|
|
|
showModal('ajax-modal', '480px');
|
|
|
|
|
$('#ajax-modal').css('height','240px');
|
|
|
|
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
|
|
|
|
"<a href='#' onclick='hiddent_alert_model();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
|
|
|
|
$('#ajax-modal').parent().css("top","").css("left","").css("width","511");
|
|
|
|
|
$('#ajax-modal').parent().addClass("alert_praise");
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% unless @is_teacher%>
|
|
|
|
|
<% if @bid.comment_status == 0%>
|
|
|
|
|
$("#my_homework").click();
|
|
|
|
|
<% elsif @bid.comment_status == 2%>
|
|
|
|
|
$("#all_homeworks").click();
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
function hiddent_alert_model(){hideModal($('#popbox02'));}
|
|
|
|
|
|
|
|
|
|