Trim address when generating the QR code

This commit is contained in:
JonnyWong16 2020-07-24 20:56:37 -07:00
commit 3a2cc6efc7
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -121,6 +121,7 @@ DOCUMENTATION :: END
});
$('#api_qr_address').change(function () {
this.value = $.trim(this.value);
var url = $(this).val();
checkQRAddress(url);