Cleanups in the views module
Mainly rename from original_params to new_params (so that the keyword
argument in the __init__ method is the same for all). Also use
super(View, self) where appropriate.
Patch by: Sverre Rabbelier
$(function() {
$('#side #menu li.expandable > a').dblclick(function() {
window.location = $(this).attr('href');
})
$('#side #menu li.expandable > span').toggle(function() {
$(this).find("img").attr('src', '/soc/content/images/plus.gif').end().parent().children("ul").toggle();
}, function() {
$(this).find("img").attr('src', '/soc/content/images/minus.gif').end().parent().children("ul").toggle();
return false;
});
$('#side #menu li.expandable > span').contents().before('<img src="/soc/content/images/minus.gif" />');
});