Merge pull request #650 from yolk/1104-wrong-profile-picture-size
fixed #1104 wrong profile picture size
This commit is contained in:
commit
1be2845687
2 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
-# the COPYRIGHT file.
|
-# the COPYRIGHT file.
|
||||||
|
|
||||||
= form_tag( comments_path, :id => "new_comment_on_#{post_id}", :class => 'new_comment', :remote => true) do
|
= form_tag( comments_path, :id => "new_comment_on_#{post_id}", :class => 'new_comment', :remote => true) do
|
||||||
= person_image_tag(current_user, nil)
|
= person_image_tag(current_user)
|
||||||
%p
|
%p
|
||||||
= label_tag "comment_text_on_#{post_id}", t('.comment')
|
= label_tag "comment_text_on_#{post_id}", t('.comment')
|
||||||
= text_area_tag :text, nil, :rows => 2, :class => "comment_box",:id => "comment_text_on_#{post_id}"
|
= text_area_tag :text, nil, :rows => 2, :class => "comment_box",:id => "comment_text_on_#{post_id}"
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
= render :partial => 'messages/message', :collection => conversation.messages
|
= render :partial => 'messages/message', :collection => conversation.messages
|
||||||
|
|
||||||
.stream_element.new_message
|
.stream_element.new_message
|
||||||
= owner_image_tag
|
= owner_image_tag(:thumb_small)
|
||||||
|
|
||||||
.content
|
.content
|
||||||
= form_for [conversation, Message.new] do |message|
|
= form_for [conversation, Message.new] do |message|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue