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