1
0
Fork 0
forked from deblan/gist
gist/web/app/js/app.js

4 lines
121 B
JavaScript
Raw Normal View History

2015-05-04 22:12:26 +02:00
$('textarea').on('keyup change', function() {
$(this).attr('rows', Math.max(10, $(this).val().split("\n").length));
});