pdf-diff-viewer 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/PDFDiffViewer.js +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pdf-diff-viewer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Browser-based PDF comparison tool with visual diff highlighting. Zero system dependencies, pure JavaScript, client-side processing.",
|
|
5
5
|
"main": "src/PDFDiffViewer.js",
|
|
6
6
|
"type": "module",
|
package/src/PDFDiffViewer.js
CHANGED
|
@@ -226,9 +226,6 @@ class PDFDiffViewer {
|
|
|
226
226
|
alignment: { dx: best.dx, dy: best.dy }
|
|
227
227
|
};
|
|
228
228
|
}
|
|
229
|
-
alignment: { dx: best.dx, dy: best.dy }
|
|
230
|
-
};
|
|
231
|
-
}
|
|
232
229
|
|
|
233
230
|
_renderPageComparison(pageResult, pageNumA, pageNumB = null) {
|
|
234
231
|
const pageDiv = document.createElement('div');
|