aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/js/redbasic.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-09 20:19:02 -0700
committerfriendica <info@friendica.com>2013-10-09 20:19:02 -0700
commit87f1c6b8ecaf796409c6dfeb8735ce0af2ba410c (patch)
tree3a62749849df3c231346cea020612a45cf7cb9da /view/theme/redbasic/js/redbasic.js
parent1fdc82e0a122ec7ea5faea1a5cb52c78757ad50b (diff)
downloadvolse-hubzilla-87f1c6b8ecaf796409c6dfeb8735ce0af2ba410c.tar.gz
volse-hubzilla-87f1c6b8ecaf796409c6dfeb8735ce0af2ba410c.tar.bz2
volse-hubzilla-87f1c6b8ecaf796409c6dfeb8735ce0af2ba410c.zip
more icon conversions - savedsearch listings need more work. The drop icon should be hidden unless the entry is being hovered.
Diffstat (limited to 'view/theme/redbasic/js/redbasic.js')
-rw-r--r--view/theme/redbasic/js/redbasic.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index 10ca4cfa3..42a55c409 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -66,21 +66,21 @@ $('.sidebar-group-element').hover(
);
-$('.savedsearchdrop').hover(
- function() {
- $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
- function() {
- $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).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');},
+ $('#dropicon-' + id).addClass('searchdrop'); $('#dropicon-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
- $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
+ $('#dropicon-' + id).removeClass('searchdrop'); $('#dropicon-' + id).addClass('iconspacer');}
);
});