From 1ccd0dc9c360af586ed2466287fb785f6cf3ceac Mon Sep 17 00:00:00 2001 From: acestronautical Date: Mon, 5 Feb 2024 16:55:55 -0800 Subject: [PATCH] fix small bug with pagelistdetails --- src/wacky_imposition.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wacky_imposition.js b/src/wacky_imposition.js index 77976e8..cc21632 100644 --- a/src/wacky_imposition.js +++ b/src/wacky_imposition.js @@ -11,7 +11,7 @@ export class WackyImposition{ constructor(pages, duplex,format, isPacked) { this.duplex=duplex; this.sigconfig=[] // sig_count looks at the length of this array, sig_arrange joins them together with a ,; - this.pagelist = [[]]; + this.pagelistdetails = [[]]; this.isPacked = isPacked; console.log("Constructor sees ", pages) // for UI estimates @@ -623,4 +623,4 @@ export class WackyImposition{ rotate180(page) { page.vFlip = !page.vFlip; } -} \ No newline at end of file +}