Vier: New "font awesome" version, changed "reply" button, comment area is now hidden until the first reply came. (Saves space)

This commit is contained in:
Michael Vogel 2014-05-29 11:51:13 +02:00
commit 0eafed3353
12 changed files with 3835 additions and 1150 deletions

View file

@ -43,6 +43,14 @@
var localUser = {{if $local_user}}{{$local_user}}{{else}}false{{/if}};
function confirmDelete() { return confirm("{{$delitem}}"); }
function commentExpand(id) {
$("#comment-edit-text-" + id).value = '';
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
$("#mod-cmnt-wrap-" + id).show();
openMenu("comment-edit-submit-wrapper-" + id);
return true;
}
function commentOpen(obj,id) {
if(obj.value == '{{$comment}}') {
obj.value = '';