diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb index 16b5a249a..79b73cc61 100644 --- a/app/controllers/comments_controller.rb +++ b/app/controllers/comments_controller.rb @@ -57,6 +57,10 @@ class CommentsController < ApplicationController end end + def new + render :layout => false + end + def index if user_signed_in? @post = current_user.find_visible_shareable_by_id(Post, params[:post_id]) @@ -68,6 +72,7 @@ class CommentsController < ApplicationController @comments = @post.comments.includes(:author => :profile).order('created_at ASC') respond_with do |format| format.json { render :json => @post.comments.as_api_response(:backbone), :status => 200 } + format.mobile{render :layout => false} end else raise ActiveRecord::RecordNotFound.new diff --git a/app/views/comments/new.mobile.haml b/app/views/comments/new.mobile.haml index c34cdf84a..453a092c9 100644 --- a/app/views/comments/new.mobile.haml +++ b/app/views/comments/new.mobile.haml @@ -1 +1 @@ -= new_comment_form(params[:post_id], current_user) += render :partial => 'new_comment', :locals =>{:post_id => params[:post_id]} diff --git a/public/stylesheets/sass/mobile.scss b/public/stylesheets/sass/mobile.scss index 807311005..5fb8c2165 100644 --- a/public/stylesheets/sass/mobile.scss +++ b/public/stylesheets/sass/mobile.scss @@ -248,6 +248,7 @@ body { .comments { overflow: auto; position: relative; + text-align: left; * { max-width: 100%; } min-height: 34px;