diff options
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/footer.tpl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/admin/template/goto/footer.tpl b/admin/template/goto/footer.tpl index 8e62319ed..0bee2b989 100644 --- a/admin/template/goto/footer.tpl +++ b/admin/template/goto/footer.tpl @@ -39,10 +39,12 @@ <!-- Begin of JS --> {literal} <script type="text/javascript"> - // All admin textarea are resizable jQuery().ready(function(){ - jQuery("TEXTAREA, .categoryList").resizable({ - handles: "all", + // Auto size for all text area + jQuery("TEXTAREA").growfield(); + // All admin categoryList are resizable + jQuery(".doubleSelect, .categoryList").resizable({ + knobHandles: false, animate: true, animateDuration: "slow", animateEasing: "swing", |