Popup menus don't allow clicking on menu links which are parent links.
My workaround (ugly) I've changed line 210 in includes/popup.api.inc
from $href = $attributes['path'] ? 'href="' . $attributes['path'] . '"' : '';
to $href = $attributes['link'] ? 'href="/' . $attributes['link'] . ' " style="cursor:pointer;"' : '';
Fixed in v. 7.13
Comments
Comment #1
fras42 commentedMy workaround (ugly)
I've changed line 210 in includes/popup.api.inc
from
$href = $attributes['path'] ? 'href="' . $attributes['path'] . '"' : '';
to
$href = $attributes['link'] ? 'href="/' . $attributes['link'] . ' " style="cursor:pointer;"' : '';
Comment #2
Scheepers de Bruin commentedFixed in v. 7.13