forgot that regexp.match returns null when it doesn't find anything
This commit is contained in:
parent
3234ab5b24
commit
899d9c127e
|
@ -7,4 +7,4 @@
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
|
|
||||||
(define version "1.90")
|
(define version "1.93")
|
||||||
|
|
|
@ -656,8 +656,10 @@
|
||||||
// to avoid any 'Permission Denied' errors in IE
|
// to avoid any 'Permission Denied' errors in IE
|
||||||
div.innerHTML = str.replace(rscript, "").replace(rlink, "");
|
div.innerHTML = str.replace(rscript, "").replace(rlink, "");
|
||||||
var linkMatches = str.match(rlink);
|
var linkMatches = str.match(rlink);
|
||||||
for (var i = 0; i < linkMatches.length; i++) {
|
if (linkMatches) {
|
||||||
$(div).append($(linkMatches[i]));
|
for (var i = 0; i < linkMatches.length; i++) {
|
||||||
|
$(div).append($(linkMatches[i]));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $(div);
|
return $(div);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user