1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Fix external links in Presentation Mode (issue #3755)

This commit is contained in:
Jonas Jenwald 2013-10-02 16:17:38 +02:00
parent 0cd4874df6
commit 87eb2dccbe

View file

@ -127,7 +127,9 @@ var PageView = function pageView(container, id, scale,
}
return false;
};
link.className = 'internalLink';
if (dest) {
link.className = 'internalLink';
}
}
function bindNamedAction(link, action) {