mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-07 13:55:03 +02:00
d37ec3ddfd
git-svn-id: http://piwigo.org/svn/trunk@9172 68402e56-0260-453c-a942-63ccdbb3a9ee
21 lines
747 B
Smarty
21 lines
747 B
Smarty
{combine_script id='jquery' load='async' path='themes/default/js/jquery.min.js'}
|
|
{combine_script id='jquery.ui' load='async' require='jquery' path='themes/default/js/ui/jquery.ui.min.js'}
|
|
{combine_script id='jquery.ui.resizable' load='async' require='jquery.ui' path='themes/default/js/ui/minified/jquery.ui.resizable.min.js'}
|
|
|
|
{* Resize possible *}
|
|
{footer_script require='jquery.ui.resizable'}{literal}
|
|
jQuery().ready(function(){
|
|
// Resize possible for list
|
|
jQuery(".categoryList").resizable({
|
|
handles: "all",
|
|
animate: true,
|
|
animateDuration: "slow",
|
|
animateEasing: "swing",
|
|
preventDefault: true,
|
|
preserveCursor: true,
|
|
autoHide: true,
|
|
ghost: true
|
|
});
|
|
});
|
|
{/literal}{/footer_script}
|