aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/duepuntozero/theme.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-01 16:33:53 -0800
committerfriendica <info@friendica.com>2011-12-01 16:33:53 -0800
commitac3df5fece6e1f5a6eab3a2694b15bcf45ed31e4 (patch)
tree204e91c02902a0a3c65cff9fc40808c7d516de75 /view/theme/duepuntozero/theme.php
parent29b5d398fd4c80321fe0882bab9cc11455c75784 (diff)
downloadvolse-hubzilla-ac3df5fece6e1f5a6eab3a2694b15bcf45ed31e4.tar.gz
volse-hubzilla-ac3df5fece6e1f5a6eab3a2694b15bcf45ed31e4.tar.bz2
volse-hubzilla-ac3df5fece6e1f5a6eab3a2694b15bcf45ed31e4.zip
dynamic group edit buttons
Diffstat (limited to 'view/theme/duepuntozero/theme.php')
-rw-r--r--view/theme/duepuntozero/theme.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php
index ebced7b9b..3e55b658a 100644
--- a/view/theme/duepuntozero/theme.php
+++ b/view/theme/duepuntozero/theme.php
@@ -1,2 +1,26 @@
<?php
$a->theme_info = array();
+
+$a->page['htmlhead'] .= <<< EOT
+<script>
+$(document).ready(function() {
+
+$('.group-edit-icon').hover(
+ function() {
+ $(this).addClass('icon'); $(this).removeClass('iconspacer');},
+ function() {
+ $(this).removeClass('icon'); $(this).addClass('iconspacer');}
+ );
+
+$('.sidebar-group-element').hover(
+ function() {
+ id = $(this).attr('id');
+ $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
+
+ function() {
+ id = $(this).attr('id');
+ $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
+ );
+});
+</script>
+EOT;