15 lines
637 B
Plaintext
15 lines
637 B
Plaintext
<% if @user.user_extensions.identity == UserExtensions::TEACHER %>
|
|
<%= render :partial => 'my_course' %>
|
|
<% else %> <!--for student-->
|
|
<%= render :partial => 'my_joinedcourse' %>
|
|
<% end %>
|
|
<script type="text/javascript" language="javascript">
|
|
$(document).ready(function($) {
|
|
$("#content .content_frame").find("a").attr("target", "_blank");
|
|
$("content-title-top p:first").find("a").attr("target", "_blank");
|
|
$("#content .content_frame [color=#666666]").find("a").removeAttr("target");
|
|
$('#content .content-title-top table[width=580] td:first span:eq(1)').find("a:first").removeAttr("target");
|
|
|
|
});
|
|
</script>
|