menu hover bug
jglynn - June 22, 2009 - 21:46
| Project: | Signwriter |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
I couldn't get the menu hover to work until I changed the module lines 1314-1321 to be
$hover_profile = _signwriter_get_val($profile, 'hover_profile', 0);
if ($hover_profile) {
$attributes['class'] = $attributes['class'] ? $attributes['class'] . ' signwriter signwriter-hover' : 'signwriter signwriter-hover';
}
else {
$attributes['class'] = $attributes['class'] ? $attributes['class'] . ' signwriter' : 'signwriter';
}
otherwise it never writes signwriter-hover class

#1
This problem is resolved in the 6.x-2.x branch
#2
Automatically closed -- issue fixed for 2 weeks with no activity.