Skip to content

Instantly share code, notes, and snippets.

@nchapman
Created October 25, 2010 21:12
Show Gist options
  • Save nchapman/645769 to your computer and use it in GitHub Desktop.
Save nchapman/645769 to your computer and use it in GitHub Desktop.
growMessageBody: function() {
var messageBody = $("message_body");
var rows = messageBody.value.split('\n').length;
if (rows <= 1)
rows = 2;
if (rows >= 10)
rows = 10;
messageBody.rows = rows;
this.resize();
this.scroll();
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment