aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/template/include/autosize.inc.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/template/include/autosize.inc.tpl')
-rw-r--r--themes/default/template/include/autosize.inc.tpl13
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/default/template/include/autosize.inc.tpl b/themes/default/template/include/autosize.inc.tpl
new file mode 100644
index 000000000..8f5c78c70
--- /dev/null
+++ b/themes/default/template/include/autosize.inc.tpl
@@ -0,0 +1,13 @@
+{known_script id="jquery" src=$ROOT_URL|@cat:"themes/default/js/jquery.packed.js"}
+{known_script id="jquery.autogrow" src=$ROOT_URL|@cat:"themes/default/js/plugins/jquery.autogrow-textarea.js"}
+
+{* Auto size and auto grow textarea *}
+{literal}
+<script type="text/javascript">
+ jQuery().ready(function(){
+ jQuery('textarea').css('overflow-y', 'hidden');
+ // Auto size and auto grow for all text area
+ jQuery('textarea').autogrow();
+ });
+</script>
+{/literal}