Ticket #185 (closed defect: wontfix)

Opened 13 months ago

Last modified 4 months ago

jQuery.wymeditor.js : line 1557 - Incompatibility with jQuery 1.3.x

Reported by: stephband Owned by: jf.hovinne
Priority: major Milestone: 0.5
Component: editor Version: trunk
Keywords: Cc:

Description

jQuery.wymeditor.js : line 1557

jQuery.isFunction() no longer works as expected in Internet Explorer due to changes in jQuery-1.3.x. wym._options.postInitDialog is not reported as a function, but as an object, so isFunction returns false and wym._options.postInitDialog is not called.

replacing the line with:

if(wym._options.postInitDialog)

makes it work again.

Change History

Changed 4 months ago by mr_lundis

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

This should not be an issue as long as you don't use a native function as callback. If you for some reason need to use a native function as callback, wrap it in a anonymous function and everything will be fine.

If this is not the case, feel free to reopen the ticket.

Note: See TracTickets for help on using tickets.