$j did not exist
parent
4a0cdbac07
commit
9516b4b174
|
@ -3,12 +3,12 @@ which overrides display: none in the stylesheet. Sneaky! */
|
|||
$(document).ready(function(){
|
||||
$('#toggle-list').click(function(){
|
||||
$('.panelview').addClass("listview").removeClass("panelview");
|
||||
$j(this).css({opacity: 1});
|
||||
$(this).css({opacity: 1});
|
||||
$('#toggle-panel').css({opacity: .2});
|
||||
});
|
||||
$('#toggle-panel').click(function(){
|
||||
$('.listview').addClass("panelview").removeClass("listview");
|
||||
$j(this).css({opacity: 1});
|
||||
$(this).css({opacity: 1});
|
||||
$('#toggle-list').css({opacity: .2});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue