| Current Path : /var/www/html/cibahia.sumar.com.py/wp-content/plugins/peepso/assets/js/ |
| Current File : /var/www/html/cibahia.sumar.com.py/wp-content/plugins/peepso/assets/js/autosize.js |
(function ($, _) {
function autosize(textarea) {
textarea.style.height = '';
textarea.style.height = +textarea.scrollHeight + 'px';
}
$.fn.ps_autosize = function () {
return this.each(function () {
autosize(this);
$(this)
.off('input.ps-autosize')
.on('input.ps-autosize', function () {
autosize(this);
});
});
};
})(jQuery, _);