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

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

change: according to topic:15067, svn:keywords property was removed

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