diff options
Diffstat (limited to 'admin/template/goto/double_select.tpl')
-rw-r--r-- | admin/template/goto/double_select.tpl | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/admin/template/goto/double_select.tpl b/admin/template/goto/double_select.tpl index ab01b9b9b..3b287120f 100644 --- a/admin/template/goto/double_select.tpl +++ b/admin/template/goto/double_select.tpl @@ -1,4 +1,7 @@ {* $Id$ *} +{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js" } +{known_script id="jquery.ui.sortable" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.resizable.packed.js" } + <table class="doubleSelect"> <tr> <td> @@ -17,4 +20,23 @@ <p><input class="submit" type="submit" value="«" name="trueify" style="font-size:15px;" {$TAG_INPUT_ENABLED}/></p> </td> </tr> -</table>
\ No newline at end of file +</table> + +{literal} +<script type="text/javascript"> +jQuery().ready(function(){ + jQuery(".doubleSelect SELECT.categoryList").resizable({ + handles: "w,e", + knobHandles: false, + animate: true, + animateDuration: "slow", + animateEasing: "swing", + preventDefault: true, + preserveCursor: true, + autoHide: true, + ghost: true + + }); +}); +</script> +{/literal}
\ No newline at end of file |