diff --git a/app/views/boards/_course_show.html.erb b/app/views/boards/_course_show.html.erb
index 7eed593d9..417a5a8ba 100644
--- a/app/views/boards/_course_show.html.erb
+++ b/app/views/boards/_course_show.html.erb
@@ -70,26 +70,35 @@
//解决由于图片加载慢造成div高度不够 以至于展开按钮不显示的bug
$(function(){
function nh_show_btn(){
- if($("#contentmessage<%=topic.id %>").height()>182){
- $("#project_show_<%= topic.id%>").show();
+ if($("#project_show_<%= topic.id%>").is(':hidden')){
+ if($("#contentmessage<%=topic.id %>").height()>182){
+ $("#project_show_<%= topic.id%>").show();
+ }
}
}
var div = $("#contentmessage<%=topic.id %>");
var imgs = $('img',div);
var lens = imgs.length;
function nh_load_img_end(){
- lens--;
- if(lens <= 0){
- nh_show_btn();
- }
- }
- if(lens <= 0){
nh_show_btn();
- }else{
+// lens--;
+// if(lens <= 0){
+// nh_show_btn();
+// }
+ }
+ if(lens > 0){
$('img',div).load(function(){
nh_load_img_end();
});
}
+ nh_show_btn();
+// if(lens <= 0){
+// nh_show_btn();
+// }else{
+// $('img',div).load(function(){
+// nh_load_img_end();
+// });
+// }
});
diff --git a/app/views/boards/_project_show.html.erb b/app/views/boards/_project_show.html.erb
index bb36c6f19..03d283031 100644
--- a/app/views/boards/_project_show.html.erb
+++ b/app/views/boards/_project_show.html.erb
@@ -62,26 +62,35 @@
//解决由于图片加载慢造成div高度不够 以至于展开按钮不显示的bug
$(function(){
function nh_show_btn(){
- if($("#contentmessage<%=topic.id %>").height()>182){
- $("#project_show_<%= topic.id%>").show();
+ if($("#project_show_<%= topic.id%>").is(':hidden')){
+ if($("#contentmessage<%=topic.id %>").height()>182){
+ $("#project_show_<%= topic.id%>").show();
+ }
}
}
var div = $("#contentmessage<%=topic.id %>");
var imgs = $('img',div);
var lens = imgs.length;
function nh_load_img_end(){
- lens--;
- if(lens <= 0){
- nh_show_btn();
- }
- }
- if(lens <= 0){
nh_show_btn();
- }else{
+// lens--;
+// if(lens <= 0){
+// nh_show_btn();
+// }
+ }
+ if(lens > 0){
$('img',div).load(function(){
nh_load_img_end();
});
}
+ nh_show_btn();
+// if(lens <= 0){
+// nh_show_btn();
+// }else{
+// $('img',div).load(function(){
+// nh_load_img_end();
+// });
+// }
});