mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Add toggledClass property to toolbar toggle actions
This commit is contained in:
parent
810c201018
commit
7ccbdfe871
@ -405,7 +405,7 @@ var et2_toolbar = et2_DOMWidget.extend([et2_IInput],
|
||||
|
||||
if (action && action.checkbox)
|
||||
{
|
||||
if (this.checkbox(action.id)) button.addClass('toolbar_toggled');
|
||||
if (this.checkbox(action.id)) button.addClass('toolbar_toggled'+ (typeof action.toggledClass != 'undefined'?" "+action.toggledClass:''));
|
||||
}
|
||||
if ( action.iconUrl)
|
||||
{
|
||||
@ -479,7 +479,7 @@ var et2_toolbar = et2_DOMWidget.extend([et2_IInput],
|
||||
if (btn.length > 0)
|
||||
{
|
||||
action_event.set_checked(_value);
|
||||
btn.toggleClass('toolbar_toggled');
|
||||
btn.toggleClass('toolbar_toggled'+ (typeof action_event.data.toggledClass != 'undefined'?" "+action_event.data.toggledClass:''));
|
||||
}
|
||||
}
|
||||
else if (action_event)
|
||||
|
Loading…
Reference in New Issue
Block a user