source: trunk/admin/template/goto/include/resize.inc.tpl @ 3283

Last change on this file since 3283 was 3283, checked in by plg, 15 years ago

complement to r3282, remove all $Id$ in source code.

  • 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.