aboutsummaryrefslogtreecommitdiffstats
path: root/admin/template/goto/include
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2008-10-04 13:54:54 +0000
committerpatdenice <patdenice@piwigo.org>2008-10-04 13:54:54 +0000
commiteb07150f22c453f66524b8124b0c9ffd4bb119b7 (patch)
tree7b2a0a2ee0cdbf7b3eec3265bf5c1c293b71b0f4 /admin/template/goto/include
parent9559f1a875dd97c1bcf9b7e603ec27a5245c1479 (diff)
- 883: category status wasn't saved.
- 870, 877, 878: growfield plugins send wrong value when empty textarea. Now use another plugin for autogrow. git-svn-id: http://piwigo.org/svn/trunk@2653 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/template/goto/include')
-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}