Ticket #1260 (closed defect: fixed)

Opened 17 months ago

Last modified 17 months ago

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

Changed 17 months ago by MartinBudden

  • owner changed from JeremyRuston to MartinBudden
  • priority changed from undefined to minor
  • severity changed from undefined to low
  • milestone set to 2.7

Changed 17 months ago by MartinBudden

  • status changed from new to closed
  • resolution set to fixed

Fixed in changeset:12457

Note: See TracTickets for help on using tickets.