mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
Merge pull request #515 from notmasteryet/tree-23
Fixing hyperlinks (regr. #509)
This commit is contained in:
commit
b8c7030309
1 changed files with 2 additions and 2 deletions
|
@ -280,8 +280,8 @@ var PageView = function(container, content, id, pageWidth, pageHeight,
|
|||
var links = content.getLinks();
|
||||
for (var i = 0; i < links.length; i++) {
|
||||
var link = document.createElement('a');
|
||||
link.style.left = (Math.floor(links[i].x - this.x) * scale) + 'px';
|
||||
link.style.top = (Math.floor(links[i].y - this.y) * scale) + 'px';
|
||||
link.style.left = (Math.floor(links[i].x - view.x) * scale) + 'px';
|
||||
link.style.top = (Math.floor(links[i].y - view.y) * scale) + 'px';
|
||||
link.style.width = Math.ceil(links[i].width * scale) + 'px';
|
||||
link.style.height = Math.ceil(links[i].height * scale) + 'px';
|
||||
link.href = links[i].url || '';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue