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

Last change on this file since 5095 was 5095, checked in by plg, 14 years ago

feature 1494: move all *.tpl files from template/yoga to the new
template/default (from which yoga derives)

  • Property svn:eol-style set to LF
File size: 699 bytes
Line 
1{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
2{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.core.packed.js"}
3{known_script id="jquery.ui.resizable" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.resizable.packed.js"}
4
5{* Resize possible *}
6{literal}
7<script type="text/javascript">
8  jQuery().ready(function(){
9    // Resize possible for list
10    jQuery(".categoryList").resizable({
11      handles: "all",
12      animate: true,
13      animateDuration: "slow",
14      animateEasing: "swing",
15      preventDefault: true,
16      preserveCursor: true,
17      autoHide: true,
18      ghost: true
19    });
20  });
21</script>
22{/literal}
Note: See TracBrowser for help on using the repository browser.