Ticket #523 (closed defect: fixed)
strike / del isn't replaced correctly in inwardHtml
| Reported by: | xinha.20.artus83@… | Owned by: | gogo |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Xinha Core | Version: | |
| Severity: | trivial | Keywords: | |
| Cc: |
Description
In both functions inwardHTML and outwardHTML <strike> is replaced by <del>. I think in the function inwardHTML it should be the other way around.
So we should replace there:
html = html.replace(/<(\/?)strike(\s|>|\/)/ig, "<$1del$2");
with:
html = html.replace(/<(\/?)del(\s|>|\/)/ig, "<$1strike$2");
Change History
Note: See
TracTickets for help on using
tickets.
