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 || '';