Browse Source

automatically expand text field

closes #61
pull/82/head
Aaron Parecki 7 years ago
parent
commit
b9a283f4b1
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      views/new-post.php

+ 9
- 2
views/new-post.php View File

@ -243,7 +243,15 @@ $(function(){
$("#note_content, #note_category, #note_in_reply_to, #note_slug, #note_photo_url").on('keyup change', function(e){ $("#note_content, #note_category, #note_in_reply_to, #note_slug, #note_photo_url").on('keyup change', function(e){
saveNoteState(); saveNoteState();
})
});
$("#note_content").on('keyup', function(){
var scrollHeight = document.getElementById("note_content").scrollHeight;
var currentHeight = parseInt($("#note_content").css("height"));
if(Math.abs(scrollHeight - currentHeight) > 20) {
$("#note_content").css("height", (scrollHeight+30)+"px");
}
});
$("#expand-reply").click(function(){ $("#expand-reply").click(function(){
$('.reply-section').removeClass('hidden'); $('.reply-section').removeClass('hidden');
@ -340,7 +348,6 @@ $(function(){
for(var i in data.mentions) { for(var i in data.mentions) {
mentions += '@'+data.mentions[i]+' '; mentions += '@'+data.mentions[i]+' ';
} }
console.log(mentions);
$("#note_content").val(mentions); $("#note_content").val(mentions);
} }

Loading…
Cancel
Save