aboutsummaryrefslogtreecommitdiffstats
path: root/admin/template/goto/include/dbselect.inc.tpl
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2008-10-11 20:23:30 +0000
committerrub <rub@piwigo.org>2008-10-11 20:23:30 +0000
commitb8f1c3753080886617cc4f3fb52935c483fe7822 (patch)
tree25342e61b8b8a8a88cfe12ae4402fc2131da25d8 /admin/template/goto/include/dbselect.inc.tpl
parent9772b96f9a59e73ff9c97e6809424397f54201eb (diff)
jQuery Datepicker:
Readd resize for list of categories Use include for double select list Merge trunk 2717:2718 into branch 2.0 git-svn-id: http://piwigo.org/svn/branches/2.0@2719 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/template/goto/include/dbselect.inc.tpl')
-rw-r--r--admin/template/goto/include/dbselect.inc.tpl23
1 files changed, 23 insertions, 0 deletions
diff --git a/admin/template/goto/include/dbselect.inc.tpl b/admin/template/goto/include/dbselect.inc.tpl
new file mode 100644
index 000000000..cab472460
--- /dev/null
+++ b/admin/template/goto/include/dbselect.inc.tpl
@@ -0,0 +1,23 @@
+{* $Id$ *}
+{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
+{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js"}
+{known_script id="jquery.ui.resizable" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.resizable.packed.js"}
+
+{* Resize possible *}
+{literal}
+<script type="text/javascript">
+ jQuery().ready(function(){
+ // Resize possible for double select list
+ jQuery(".doubleSelect select.categoryList").resizable({
+ handles: "w,e",
+ animate: true,
+ animateDuration: "slow",
+ animateEasing: "swing",
+ preventDefault: true,
+ preserveCursor: true,
+ autoHide: true,
+ ghost: true
+ });
+ });
+</script>
+{/literal}