在未登录状态, 打开评论页面确实会报错 <img src=<%= current_user.avatar %> alt="" class="image-circle">
2015-09-04
按照笔记里面最后的css部分
textarea {
border: none;
height: 230px;
margin-top: -20px;
}
添加后添加评论的框会出现错误。。我改到margin-top: -10px;就可以了。。。
textarea {
border: none;
height: 230px;
margin-top: -20px;
}
添加后添加评论的框会出现错误。。我改到margin-top: -10px;就可以了。。。
2015-07-22