Try onload resizing with jquery
This commit is contained in:
parent
704e1444e4
commit
62fc210f95
|
@ -53,15 +53,20 @@
|
|||
<script>
|
||||
$.material.init();
|
||||
|
||||
$( document ).ready(function() {
|
||||
jQuery.each(jQuery('textarea[data-autoresize]'), function() {
|
||||
jQuery.each(jQuery('textarea[data-autoresize]'), function() {
|
||||
var offset = this.offsetHeight - this.clientHeight;
|
||||
|
||||
var resizeTextarea = function(el) {
|
||||
jQuery(el).css('height', 'auto').css('height', el.scrollHeight + offset);
|
||||
};
|
||||
jQuery(this).on('keyup input', function() { resizeTextarea(this); }).removeAttr('data-autoresize');
|
||||
});});
|
||||
jQuery(this).on('keyup input', function() { resizeTextarea(this); });
|
||||
});
|
||||
|
||||
$( document ).ready(function() {
|
||||
$('textarea[data-autoresize]').each(function(){
|
||||
resizeTextarea(this);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue