Add page onload

This commit is contained in:
Eliot Whalan 2016-06-24 16:25:32 +10:00
parent 565a11a2aa
commit 21342848b1
1 changed files with 3 additions and 2 deletions

View File

@ -53,14 +53,15 @@
<script>
$.material.init();
jQuery.each(jQuery('textarea[data-autoresize]'), function() {
$( document ).ready(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');
});
});});
</script>
</body>