This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var id_count = 1; | |
function HighlightSelectedText() | |
{ | |
var pageIndex = window.PDFViewerApplication.pdfViewer.currentPageNumber - 1; | |
var page = window.PDFViewerApplication.pdfViewer.getPageView(pageIndex); | |
var pageElement = page.canvas.parentNode.nextSibling; | |
var pageRect = page.canvas.getClientRects()[0]; | |
var selection = window.getSelection(); |