Fixing hyperlinks (regr. #509)
This commit is contained in:
parent
8c7934e59d
commit
7fd6283d6f
@ -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…
x
Reference in New Issue
Block a user