User:Thparkth/CommentsInLocalTime.js: Difference between revisions

Content deleted Content added
just the regexp
verbose loop breakout
Line 194:
function wrapTimestamps() {
var prefixNode;
var loopEscapeCounter = 0; // we'll break out if the while loop runs more than 105,000 times to avoid a browser hang
while ((prefixNode = iter.nextNode())) {
if (loopEscapeCounter++ > 100005000) break;{ // escape infinite loop
console.log("ERROR: CommentsInLocalTime.js loop breakout in wrapTimestamps()");
break;
}
 
var result = LocalComments.parseRegExp.exec(prefixNode.data);
if (!result) continue;