feat(event-binder.js): Signaturkomponente hinzugefügt, um die Animationen in der Fortschrittsleiste der Signatur zu behandeln
- Befehl zum Erhöhen der Anzahl von Signaturen unter der createAnnotationFrameBlob-Methode in annotation.js hinzugefügt - Vorzeichenbehafteter Befehl zum Nullsetzen der Zählung unter RESET-case der handleClick-Methode in app.js hinzugefügt
This commit is contained in:
@@ -64,4 +64,22 @@ class Comp {
|
||||
Comp.ActPanel.Display = Comp.ActPanel.IsHided ? '' : 'none'
|
||||
}
|
||||
}
|
||||
|
||||
static SignatureProgress = class {
|
||||
static __SignedCountSpan;
|
||||
static get SignedCountSpan() {
|
||||
this.__SignedCountSpan ??= document.getElementById("signed-count");
|
||||
return Comp.SignatureProgress.__SignedCountSpan;
|
||||
}
|
||||
|
||||
static __signedCount = 0;
|
||||
static get SignedCount() {
|
||||
return this.__signedCount;
|
||||
}
|
||||
|
||||
static set SignedCount(value) {
|
||||
this.__signedCount = value;
|
||||
this.SignedCountSpan.innerText = value.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user