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

Last change on this file since 9559 was 9559, checked in by patdenice, 13 years ago

Update jQuery UI to 1.8.10.
Improve jquery ui management in template class.

  • Property svn:eol-style set to LF
File size: 761 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/minified/jquery.ui.core.min.js'}
3{combine_script id='jquery.ui.resizable' load='async' require='jquery.ui' path='themes/default/js/ui/minified/jquery.ui.resizable.min.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.