mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-08-07 05:52:27 -04:00
Merge branch 'ARI-5980' into qa
This commit is contained in:
commit
ace5342b57
1 changed files with 2 additions and 2 deletions
|
@ -14,9 +14,9 @@ var __brzl_compileOutlinks = function(frame) {
|
||||||
if (popups && popups.length > 0) {
|
if (popups && popups.length > 0) {
|
||||||
for (var p=0; p < popups.length; p++) {
|
for (var p=0; p < popups.length; p++) {
|
||||||
if (popups[p].onclick){
|
if (popups[p].onclick){
|
||||||
m = popups[p].onclick.toString().match(__brzl_popup_re);
|
m = __brzl_popup_re[Symbol.match](popups[p].onclick.toString());
|
||||||
} else {
|
} else {
|
||||||
m = popups[p].ondblclick.toString().match(__brzl_popup_re);
|
m = __brzl_popup_re[Symbol.match](popups[p].ondblclick.toString());
|
||||||
}
|
}
|
||||||
if (m) {
|
if (m) {
|
||||||
outlinks.push(m[2]);
|
outlinks.push(m[2]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue