|
|
@ -486,11 +486,12 @@ var PageView = function pageView(container, content, id, pageWidth, pageHeight, |
|
|
|
var annotTitle = document.createElement('h1'); |
|
|
|
var annotTitle = document.createElement('h1'); |
|
|
|
var annotContent = document.createElement('p'); |
|
|
|
var annotContent = document.createElement('p'); |
|
|
|
|
|
|
|
|
|
|
|
annotDetails.style.left = (Math.floor(item.x - view.x + item.width) * scale) + 'px'; |
|
|
|
var offsetPos = Math.floor(item.x - view.x + item.width); |
|
|
|
|
|
|
|
annotDetails.style.left = (offsetPos * scale) + 'px'; |
|
|
|
annotDetails.style.top = (Math.floor(item.y - view.y) * scale) + 'px'; |
|
|
|
annotDetails.style.top = (Math.floor(item.y - view.y) * scale) + 'px'; |
|
|
|
annotTitle.textContent = item.title; |
|
|
|
annotTitle.textContent = item.title; |
|
|
|
|
|
|
|
|
|
|
|
if(!item.content) { |
|
|
|
if (!item.content) { |
|
|
|
annotContent.style.display = 'none'; |
|
|
|
annotContent.style.display = 'none'; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
annotContent.innerHTML = item.content.replace('\n', '<br />'); |
|
|
|
annotContent.innerHTML = item.content.replace('\n', '<br />'); |
|
|
@ -526,7 +527,7 @@ var PageView = function pageView(container, content, id, pageWidth, pageHeight, |
|
|
|
case 'Text': |
|
|
|
case 'Text': |
|
|
|
case 'Check': |
|
|
|
case 'Check': |
|
|
|
var comment = createCommentAnnotation(item.name, item); |
|
|
|
var comment = createCommentAnnotation(item.name, item); |
|
|
|
if(comment) |
|
|
|
if (comment) |
|
|
|
div.appendChild(comment); |
|
|
|
div.appendChild(comment); |
|
|
|
break; |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|