some work on jot, remove some deprecated js and some random style fixes

This commit is contained in:
marijus
2014-04-03 17:03:32 +02:00
parent 98788308e1
commit 3f1a78fa69
8 changed files with 98 additions and 198 deletions

View File

@@ -40,31 +40,6 @@ if($('#tabs-collapse-1').length == 0) {
$('#expand-tabs').hide();
}
$('.group-edit-icon').hover(
function() {
$(this).css('opacity','1.0');},
function() {
$(this).css('opacity','0');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).css('opacity','1.0');},
function() {
id = $(this).attr('id');
$('#edit-' + id).css('opacity','0');}
);
$('.savedsearchdrop').hover(
function() {
$(this).css('opacity','1.0');},
function() {
$(this).css('opacity','0');}
);
});