+
<%= work.description if work.description%>
diff --git a/app/views/student_work/_student_work_list.html.erb b/app/views/student_work/_student_work_list.html.erb
index 53e57fd9c..f9f55456b 100644
--- a/app/views/student_work/_student_work_list.html.erb
+++ b/app/views/student_work/_student_work_list.html.erb
@@ -71,7 +71,7 @@
indentUnit: 2,
matchBrackets: true,
readOnly: true,
- value: $("#work-src").text()
+ value: $("#work-src_<%= work.id%>").text()
});
<% elsif @homework.homework_type == 1 %>
$("#about_hwork_<%= work.id%>").html("<%= escape_javascript(render :partial => 'show',:locals => {:work => work, :score =>student_work_score(work,User.current),:student_work_scores => work.student_works_scores.order("updated_at desc")}) %>");
diff --git a/app/views/student_work/show.js.erb b/app/views/student_work/show.js.erb
index afa03bff8..135da3c0d 100644
--- a/app/views/student_work/show.js.erb
+++ b/app/views/student_work/show.js.erb
@@ -25,7 +25,7 @@ else{
indentUnit: 2,
matchBrackets: true,
readOnly: true,
- value: $("#work-src").text()
+ value: $("#work-src_<%= @work.id%>").text()
}
);