moved user's name to the right of their picture
This commit is contained in:
parent
85cee4064b
commit
0001797850
2 changed files with 6 additions and 8 deletions
|
|
@ -38,11 +38,6 @@
|
|||
|
||||
= render "shared/publisher"
|
||||
.container
|
||||
- if user_signed_in?
|
||||
%h1#user_name
|
||||
= link_to User.first.real_name, root_url
|
||||
%span.description
|
||||
= my_latest_message
|
||||
|
||||
#content.span-24.last
|
||||
.span-5.append-1.last
|
||||
|
|
@ -50,5 +45,10 @@
|
|||
= render 'friends/sidebar' if user_signed_in?
|
||||
|
||||
.span-18
|
||||
- if user_signed_in?
|
||||
%h1#user_name
|
||||
= link_to User.first.real_name, root_url
|
||||
%span.description
|
||||
= my_latest_message
|
||||
= yield
|
||||
= render "posts/debug"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
$(document).ready( function() {
|
||||
|
||||
$("#publisher_content_pickers .status_message").click(selectPublisherTab);
|
||||
|
||||
$("#publisher_content_pickers .bookmark").click(selectPublisherTab);
|
||||
|
||||
$("#publisher_content_pickers .blog").click(selectPublisherTab);
|
||||
$("#publisher_content_pickers .blog").click(selectPublisherTab);
|
||||
|
||||
function selectPublisherTab(){
|
||||
var form_id = "#new_" + this.className
|
||||
|
|
|
|||
Loading…
Reference in a new issue