blob: 3f513cd06aa6a4bdd87826cdb53ea69cc3981228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{footer_script require='jquery.ui.resizable'}{literal}
jQuery(document).ready(function(){
// Resize possible for double select list
jQuery(".doubleSelect select.categoryList").resizable({
handles: "w,e",
animate: true,
animateDuration: "slow",
animateEasing: "swing",
preventDefault: true,
preserveCursor: true,
autoHide: true,
ghost: true
});
});
{/literal}{/footer_script}
|