aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-10 20:17:41 -0700
committerfriendica <info@friendica.com>2013-10-10 20:17:41 -0700
commitc52db29ff56abfed857b11d8b9cbfb5cb4d7d598 (patch)
treeeb9faf91bfcf8a343fff9a22453c1302fad2e793 /view/theme/redbasic/js
parent993e90e9746b6a6fbc763200fefb763439770515 (diff)
downloadvolse-hubzilla-c52db29ff56abfed857b11d8b9cbfb5cb4d7d598.tar.gz
volse-hubzilla-c52db29ff56abfed857b11d8b9cbfb5cb4d7d598.tar.bz2
volse-hubzilla-c52db29ff56abfed857b11d8b9cbfb5cb4d7d598.zip
set the colour of the active nav element so it doesn't get washed out
Diffstat (limited to 'view/theme/redbasic/js')
-rw-r--r--view/theme/redbasic/js/redbasic.js26
1 files changed, 14 insertions, 12 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index 42a55c409..e7a682911 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -66,22 +66,24 @@ $('.sidebar-group-element').hover(
);
-//$('.savedsearchdrop').hover(
+//$('.saved-search-li a').hover(
// function() {
-// $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
+// id = $(this).attr('id');
+// $('#dropicon-' + id).css('visibility','visible');},
// function() {
-// $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
+// id = $(this).attr('id');
+// $('#dropicon-' + id).css('visibility','hidden');}
// );
-$('.savedsearchterm').hover(
- function() {
- id = $(this).attr('id');
- $('#dropicon-' + id).addClass('searchdrop'); $('#dropicon-' + id).removeClass('iconspacer');},
-
- function() {
- id = $(this).attr('id');
- $('#dropicon-' + id).removeClass('searchdrop'); $('#dropicon-' + id).addClass('iconspacer');}
- );
+//$('.savedsearchterm').hover(
+// function() {
+// id = $(this).attr('id');
+// $('#dropicon-' + id).css('visibility','visible');},
+//
+// function() {
+// id = $(this).attr('id');
+// $('#dropicon-' + id).css('visibility','hidden');
+// });
});