mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-20 13:04:23 +02:00
Removed buggy line drawing around QR codes
This commit is contained in:
@@ -176,14 +176,7 @@ function scanQRsend() {
|
|||||||
var outputContainer = document.getElementById('output')
|
var outputContainer = document.getElementById('output')
|
||||||
var outputMessage = document.getElementById('outputMessage')
|
var outputMessage = document.getElementById('outputMessage')
|
||||||
var outputData = document.getElementById('outputData')
|
var outputData = document.getElementById('outputData')
|
||||||
function drawLine(begin, end, color) {
|
|
||||||
canvas.beginPath()
|
|
||||||
canvas.moveTo(begin.x, begin.y)
|
|
||||||
canvas.lineTo(end.x, end.y)
|
|
||||||
canvas.lineWidth = 4
|
|
||||||
canvas.strokeStyle = color
|
|
||||||
canvas.stroke()
|
|
||||||
}
|
|
||||||
// Use facingMode: environment to attemt to get the front camera on phones
|
// Use facingMode: environment to attemt to get the front camera on phones
|
||||||
navigator.mediaDevices
|
navigator.mediaDevices
|
||||||
.getUserMedia({video: {facingMode: 'environment'}})
|
.getUserMedia({video: {facingMode: 'environment'}})
|
||||||
@@ -212,26 +205,7 @@ function scanQRsend() {
|
|||||||
inversionAttempts: 'dontInvert'
|
inversionAttempts: 'dontInvert'
|
||||||
})
|
})
|
||||||
if (code) {
|
if (code) {
|
||||||
drawLine(
|
|
||||||
code.location.topLeftCorner,
|
|
||||||
code.location.topRightCorner,
|
|
||||||
'#FF3B58'
|
|
||||||
)
|
|
||||||
drawLine(
|
|
||||||
code.location.topRightCorner,
|
|
||||||
code.location.bottomRightCorner,
|
|
||||||
'#FF3B58'
|
|
||||||
)
|
|
||||||
drawLine(
|
|
||||||
code.location.bottomRightCorner,
|
|
||||||
code.location.bottomLeftCorner,
|
|
||||||
'#FF3B58'
|
|
||||||
)
|
|
||||||
drawLine(
|
|
||||||
code.location.bottomLeftCorner,
|
|
||||||
code.location.topLeftCorner,
|
|
||||||
'#FF3B58'
|
|
||||||
)
|
|
||||||
outputMessage.hidden = true
|
outputMessage.hidden = true
|
||||||
outputData.parentElement.hidden = false
|
outputData.parentElement.hidden = false
|
||||||
outputData.innerText = JSON.stringify(code.data)
|
outputData.innerText = JSON.stringify(code.data)
|
||||||
|
Reference in New Issue
Block a user