aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/duepuntozero/theme.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-01 18:27:45 -0800
committerfriendica <info@friendica.com>2011-12-01 18:27:45 -0800
commit513c1c0d683fc770de7d9a78e0a83df9211bb4aa (patch)
tree384a8e056de800f6656ff9df3935e42f3e81bf07 /view/theme/duepuntozero/theme.php
parentac3df5fece6e1f5a6eab3a2694b15bcf45ed31e4 (diff)
downloadvolse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.tar.gz
volse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.tar.bz2
volse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.zip
dynamic delete icons for saved-search on network page
Diffstat (limited to 'view/theme/duepuntozero/theme.php')
-rw-r--r--view/theme/duepuntozero/theme.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php
index 3e55b658a..7d919fedc 100644
--- a/view/theme/duepuntozero/theme.php
+++ b/view/theme/duepuntozero/theme.php
@@ -21,6 +21,27 @@ $('.sidebar-group-element').hover(
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
);
+
+
+$('.savedsearchdrop').hover(
+ function() {
+ $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
+ function() {
+ $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
+ );
+
+$('.savedsearchterm').hover(
+ function() {
+ id = $(this).attr('id');
+ $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
+
+ function() {
+ id = $(this).attr('id');
+ $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
+ );
+
});
+
+
</script>
EOT;