mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-10 18:25:37 +02:00
Fix external links in Presentation Mode (issue #3755)
This commit is contained in:
parent
0cd4874df6
commit
87eb2dccbe
1 changed files with 3 additions and 1 deletions
|
@ -127,8 +127,10 @@ var PageView = function pageView(container, id, scale,
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
if (dest) {
|
||||||
link.className = 'internalLink';
|
link.className = 'internalLink';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function bindNamedAction(link, action) {
|
function bindNamedAction(link, action) {
|
||||||
link.href = PDFView.getAnchorUrl('');
|
link.href = PDFView.getAnchorUrl('');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue