- Code: Select all
this._regexes[mode] has no properties
on jquery.wymeditor.js
The error is caused if you defined a variable named undefined as 'undefined' (i.e. var undefined = 'undefined')
The problem was actually on xhtml_parser.js and was caused because the check for this._regexes[mode] is
- Code: Select all
if(this._regexes[mode] == undefined) { .. }
instead of
- Code: Select all
if(typeof this._regexes[mode] == undefined) { .. }