source: trunk/admin/themes/default/template/include/resize.inc.tpl @ 8162

Last change on this file since 8162 was 8162, checked in by rvelices, 13 years ago

jquery upgrade to 1.4.4

  • Property svn:eol-style set to LF
File size: 749 bytes
Line 
1{combine_script id='jquery' load='async' path='themes/default/js/jquery.min.js'}
2{combine_script id='jquery.ui' load='async' require='jquery' path='themes/default/js/ui/packed/ui.core.packed.js'}
3{combine_script id='jquery.ui.resizable' load='async' require='jquery.ui' path='themes/default/js/ui/packed/ui.resizable.packed.js'}
4
5{* Resize possible *}
6{footer_script require='jquery.ui.resizable'}{literal}
7  jQuery().ready(function(){
8    // Resize possible for list
9    jQuery(".categoryList").resizable({
10      handles: "all",
11      animate: true,
12      animateDuration: "slow",
13      animateEasing: "swing",
14      preventDefault: true,
15      preserveCursor: true,
16      autoHide: true,
17      ghost: true
18    });
19  });
20{/literal}{/footer_script}
Note: See TracBrowser for help on using the repository browser.