Skip to content

Instantly share code, notes, and snippets.

@clintecker
Created April 12, 2010 16:30
Show Gist options
  • Save clintecker/363753 to your computer and use it in GitHub Desktop.
Save clintecker/363753 to your computer and use it in GitHub Desktop.
ars.interior.update_hidden_comment = function(e){
var hidden = $('#hiddencomment'),
comment = $('#comment-form-textarea');
hidden.text(comment.val());
if(hidden.height() > 224){
comment.css('height', hidden.height() + 'px');
} else {
comment.css('height', '224px');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment