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)
|
||||
(: version String)
|
||||
|
||||
(define version "1.90")
|
||||
(define version "1.93")
|
||||
|
|
|
@ -656,9 +656,11 @@
|
|||
// to avoid any 'Permission Denied' errors in IE
|
||||
div.innerHTML = str.replace(rscript, "").replace(rlink, "");
|
||||
var linkMatches = str.match(rlink);
|
||||
if (linkMatches) {
|
||||
for (var i = 0; i < linkMatches.length; i++) {
|
||||
$(div).append($(linkMatches[i]));
|
||||
}
|
||||
}
|
||||
return $(div);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user