app/soc/content/js/menu-081108.js
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 31 Jan 2009 18:06:34 +0000
changeset 1123 9b53bc4b2ea7
parent 449 a4dc4c9e7356
child 2455 a023b71ce125
permissions -rw-r--r--
Changed scope_logic for requests to linkable_logic. This makes the scope_path for a requests of a variable length which is needed for reuse. Patch by: Sverre Rabbelier and Lennard de Rijk Reviewed 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" />');
});