diff options
author | friendica <info@friendica.com> | 2012-08-11 18:54:23 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-11 18:54:23 -0700 |
commit | e80d69d25b816cda36e2c772db2805f2dc744bbe (patch) | |
tree | 1b5f9f40061639d41b22591ae29491964934dc05 /view/theme/quattro/tpl/comment_item.tpl | |
parent | cac2d408329c8ad0f2f7faed07c4615be12acdf5 (diff) | |
download | volse-hubzilla-e80d69d25b816cda36e2c772db2805f2dc744bbe.tar.gz volse-hubzilla-e80d69d25b816cda36e2c772db2805f2dc744bbe.tar.bz2 volse-hubzilla-e80d69d25b816cda36e2c772db2805f2dc744bbe.zip |
merge upstream
Diffstat (limited to 'view/theme/quattro/tpl/comment_item.tpl')
-rw-r--r-- | view/theme/quattro/tpl/comment_item.tpl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/view/theme/quattro/tpl/comment_item.tpl b/view/theme/quattro/tpl/comment_item.tpl index ea24d95cc..7d1d7550b 100644 --- a/view/theme/quattro/tpl/comment_item.tpl +++ b/view/theme/quattro/tpl/comment_item.tpl @@ -10,8 +10,8 @@ <div class="comment-edit-photo" id="comment-edit-photo-$id" > <a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a> </div> - <div class="comment-edit-photo-end"></div> - <ul class="comment-edit-bb-$id"> + <ul id="comment-edit-bb-$id" + class="comment-edit-bb"> <li><a class="editicon boldbb shadow" style="cursor: pointer;" title="$edbold" onclick="insertFormatting('$comment','b', $id);"></a></li> @@ -37,8 +37,11 @@ style="cursor: pointer;" title="$edvideo" onclick="insertFormatting('$comment','video', $id);"></a></li> </ul> - <div class="comment-edit-bb-end"></div> - <textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea> + <textarea id="comment-edit-text-$id" + class="comment-edit-text-empty" + name="body" + onFocus="commentOpen(this,$id) && cmtBbOpen($id);" + onBlur="commentClose(this,$id) && cmtBbClose($id);" >$comment</textarea> {{ if $qcomment }} <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" > <option value=""></option> @@ -48,14 +51,12 @@ </select> {{ endif }} - <div class="comment-edit-text-end"></div> <div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" > <input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" /> <span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span> <div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div> </div> - <div class="comment-edit-end"></div> </form> </div> |