You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i do not know if it is intended bahaviour, but using signaturePad.fromData(data) always leaves the _data variable of the SignaturePad object empty.
This results into an empty array being returned if signaturePad.toData() gets called afterwards.
Setting _data manually has fixed the problem for me however.
sig_pad.fromData(data); sig_pad._data = data;
The text was updated successfully, but these errors were encountered:
Hello,
i do not know if it is intended bahaviour, but using signaturePad.fromData(data) always leaves the _data variable of the SignaturePad object empty.
This results into an empty array being returned if signaturePad.toData() gets called afterwards.
Setting _data manually has fixed the problem for me however.
sig_pad.fromData(data);
sig_pad._data = data;
The text was updated successfully, but these errors were encountered: