Ticket #1260 (closed defect: fixed)
Add exception to inlineCssHelper for floats
| Reported by: | tb | Owned by: | MartinBudden |
|---|---|---|---|
| Priority: | minor | Milestone: | 2.6.2 |
| Component: | core | Version: | |
| Severity: | low | Keywords: | |
| Cc: |
Description
Just as there is...
if(s=="bgcolor")s = "backgroundColor";
There should be...
if(s=="float")s = "cssFloat";
or more simplified...
s=s=="bgcolor"?"backgroundColor":s; s=s=="float"?"cssFloat":s;
Otherwise the following wont work...
@@float:right;Content@@
Current workaround...
@@cssFloat:right;Content@@
Change History
Note: See
TracTickets for help on using
tickets.
