aboutsummaryrefslogtreecommitdiffstats
path: root/admin/template/goto/include/autosize.inc.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'admin/template/goto/include/autosize.inc.tpl')
-rw-r--r--admin/template/goto/include/autosize.inc.tpl8
1 files changed, 3 insertions, 5 deletions
diff --git a/admin/template/goto/include/autosize.inc.tpl b/admin/template/goto/include/autosize.inc.tpl
index 79152302c..9b06727ff 100644
--- a/admin/template/goto/include/autosize.inc.tpl
+++ b/admin/template/goto/include/autosize.inc.tpl
@@ -1,16 +1,14 @@
{* $Id$ *}
{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
-{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js"}
-{known_script id="jquery.growfield" src=$ROOT_URL|@cat:"template-common/lib/plugins/jquery.growfield.packed.js"}
+{known_script id="jquery.autogrow" src=$ROOT_URL|@cat:"template-common/lib/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").growfield({
- animate: false
- });
+ jQuery('textarea').autogrow();
});
</script>
{/literal}