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

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

new template features: combine_script, footer_script and get_combined_scripts
migrated public templates only; need more code doc

  • Property svn:eol-style set to LF
File size: 726 bytes
Line 
1{combine_script id='jquery' load='footer' path='themes/default/js/jquery.packed.js'}
2{combine_script id='jquery.ui' load='footer' require='jquery' path='themes/default/js/ui/packed/ui.core.packed.js'}
3{combine_script id='jquery.ui.resizable' load='footer' require='jquery.ui' path='themes/default/js/ui/packed/ui.resizable.packed.js'}
4
5{* Resize possible *}
6{footer_script}{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}
21
Note: See TracBrowser for help on using the repository browser.