diaspora/app/views/comments/_new_comment.mobile.haml
Steffen van Bergerem 36eb283546 Merge pull request #6302 from AugierLe42e/comment-button-misbehaving
[Quickfix] Fixing comment button misbehaving
2015-08-22 02:07:14 +02:00

15 lines
874 B
Text

-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
.add_comment_bottom_link_container
= link_to "#", class: "back_to_stream_element_top pull-right" do
= image_tag "mobile/arrow_up_small.png"
- if user_signed_in?
= form_tag( post_comments_path(post_id), id: "new_comment_on_#{post_id}", class: "new_comment", autocomplete: "off") do
%fieldset
= hidden_field_tag :post_id, post_id, id: "post_id_on_#{post_id}"
.form-group
= text_area_tag :text, nil, class: "col-md-12 comment_box form-control form-group", id: "comment_text_on_#{post_id}", placeholder: t(".comment")
= submit_tag t(".comment"), :id => "comment_submit_#{post_id}", "data-disable-with" => t(".commenting"), :class => "btn btn-primary btn-block"