Commit 2beb976d authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

fixed scrolling

parent 633cd53e
...@@ -88,11 +88,13 @@ function parse_list(res){ ...@@ -88,11 +88,13 @@ function parse_list(res){
var thumb = $(this).attr("thumb"); var thumb = $(this).attr("thumb");
if (thumb.length!=""){ if (thumb.length!=""){
row.append("<td class='acell' title='"+name+"' ><div><img alt='n/a' src='models/"+name+"/thumb.jpeg'></img></div></td>"); srcpath ="models/"+name+"/thumb.jpeg";
}else{ }else{
row.append("<td class='acell' title='"+name+"' valign='top' align='center'>&ndash;</td>"); srcpath ="js/images/thumb_na.jpeg";
} }
row.append("<td class='acell' title='"+name+"' ><div><img src='"+srcpath+"'></img></div></td>");
//row.append("<td class='acell' valign='top'>"+name+"</td>"); //row.append("<td class='acell' valign='top'>"+name+"</td>");
var vlist = ""; var vlist = "";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment