Add missing blank line in soc.views.helper.params module. Fix docstring typo in soc.views.models.role module. Add missing dots at the end of sentences in soc.logic.cleaning and soc.view.models.user_self modules.
Patch by: Pawel Solyga
Review by: to-be-reviewed
$(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" />');
});