Skip to content

Instantly share code, notes, and snippets.

@ccorcos
Created July 24, 2014 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccorcos/fc277c67cef88f4a0b06 to your computer and use it in GitHub Desktop.
Save ccorcos/fc277c67cef88f4a0b06 to your computer and use it in GitHub Desktop.
Resize text areas in Meteor rendered to fit content
Template.name.rendered = ->
# resize the text areas
Meteor.defer ->
$('.content').on( 'change keyup keydown paste cut', 'textarea',
-> $(this).height(0).height(this.scrollHeight)).find('textarea').change()
$('textarea').trigger('change')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment