-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Slightly simplify the way to create the editor toolbar #19993
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Slightly simplify the way to create the editor toolbar #19993
Conversation
|
/botio integrationtest |
From: Bot.io (Linux m4)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/0be3afff7e3f92f/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/93ff72870d53578/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/0be3afff7e3f92f/output.txt Total script time: 13.23 mins
|
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/93ff72870d53578/output.txt Total script time: 31.41 mins
|
cc53b8a to
84c185c
Compare
|
/botio integrationtest |
From: Bot.io (Windows)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/fb598445de75bf0/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/36826b5d80f1942/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/36826b5d80f1942/output.txt Total script time: 13.26 mins
|
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/fb598445de75bf0/output.txt Total script time: 29.65 mins
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall, but I'll have a final look once the comments are addressed.
| } | ||
|
|
||
| addSignature(data, heightInPage, description, uuid) { | ||
| const { x: savedX, y: savedY } = this; | ||
| const { outline } = (this.#signatureData = data); | ||
| this.#isExtracted = outline instanceof ContourDrawOutline; | ||
| this.#description = description; | ||
| this.description = description; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this correct because the class already has a public description getter at
pdf.js/src/display/editor/signature.js
Line 214 in 84c185c
| get description() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a setter just after so it should be fine, right ?
84c185c to
2548405
Compare
No description provided.