Ho again Scott,
The problematic code seems to be this...
enclosedTextHelper: function(w) {
this.lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = this.lookaheadRegExp.exec(w.source);
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var text = lookaheadMatch[1];
* if(config.browser.isIE)*
* text = text.replace(/\n/g,"\r");*
createTiddlyElement(w.output,this.element,null,null,text);
w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length;
}
}
If you remove conditional above in bold, all works well in IE10. So it
seems no longer be valid for IE10+ and should have a version conditional
arround it with respect to config.browser.ieVersion being >= 10... assuming
it had been assessed correctly to begin with.
Cheers, Tobias.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.