Developer
Supported
Expresso
ExpressionEngine 2, ExpressionEngine 3, ExpressionEngine 4, ExpressionEngine 5
Back to this add-on's main page
View Other Add-ons From PutYourLightsOn
Missing buttons in toolbar when one or more header styles are selected [resolved]
General
Humanique
|
Posted: 21 June 2011 06:06 AM |
|
|
|
I noticed when you select one or more Header Styles in the config of the Expresso Fieldtype some buttons disappear from the toolbar.
After a little searching I found out this issue is caused by a missing comma on row 179 in ft.expresso.php.
When a add the comma it works just fine
So
$js .= $headers ? ',['.$headers.'"RemoveFormat"]' : '';
becomes
$js .= $headers ? ',['.$headers.'"RemoveFormat"],' : '';
|
|
|
|