Ticket #545 (closed enhancement: inactive)
Code suggestion for disableToolbar exceptions
| Reported by: | benDOTsimkinsATintsoftDOTch | Owned by: | gogo |
|---|---|---|---|
| Priority: | normal | Milestone: | Version 1.0 |
| Component: | Xinha Core | Version: | trunk |
| Severity: | minor | Keywords: | disable toolbar exceptions |
| Cc: |
Description
I note that the disableToolbar function has a parameter 'except', but it is not currently used (at least in htmlarea.js). Could I suggest the adding an extra config item and using it like so:?
//BEFORE
if(typeof except == 'undefined')
{
except = [ ];
}
//AFTER
if(typeof except == 'undefined')
{
except = [ ];*/
if(typeof this.config.AlwaysOnButtons== 'undefined')
except = [ ];
else
except = this.config.AlwaysOnButtons;
}
Change History
Note: See
TracTickets for help on using
tickets.
