Skip to content
Snippets Groups Projects
Commit 6d88528c authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Rename qrCodeScannerInit to startScanning

parent 2186f627
No related branches found
No related tags found
No related merge requests found
...@@ -126,7 +126,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) { ...@@ -126,7 +126,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) {
this._devices = devices; this._devices = devices;
if (!this.stopScan) { if (!this.stopScan) {
this.qrCodeScannerInit(); this.startScanning();
} }
}); });
} }
...@@ -138,7 +138,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) { ...@@ -138,7 +138,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) {
updated(changedProperties) { updated(changedProperties) {
if (changedProperties.get('stopScan') && !this.stopScan) { if (changedProperties.get('stopScan') && !this.stopScan) {
this.qrCodeScannerInit(); this.startScanning();
} }
} }
...@@ -146,7 +146,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) { ...@@ -146,7 +146,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) {
* Init and start the video and QR code scan * Init and start the video and QR code scan
* *
*/ */
async qrCodeScannerInit() { async startScanning() {
this.stopScan = false; this.stopScan = false;
this.askPermission = true; this.askPermission = true;
...@@ -220,7 +220,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) { ...@@ -220,7 +220,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) {
console.log("Changed Media"); console.log("Changed Media");
}); });
that.sourceChanged = false; that.sourceChanged = false;
that.qrCodeScannerInit(); that.startScanning();
return; return;
} }
if (that.videoRunning === false) { if (that.videoRunning === false) {
...@@ -485,7 +485,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) { ...@@ -485,7 +485,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) {
<div class="button-wrapper"> <div class="button-wrapper">
<button class="start button is-primary ${classMap({hidden: this.videoRunning})}" @click="${() => this.qrCodeScannerInit(this)}" title="${i18n.t('start-scan')}">${i18n.t('start-scan')}</button> <button class="start button is-primary ${classMap({hidden: this.videoRunning})}" @click="${() => this.startScanning()}" title="${i18n.t('start-scan')}">${i18n.t('start-scan')}</button>
<button class="stop button is-primary ${classMap({hidden: !this.videoRunning})}" @click="${() => this.stopScanning()}" title="${i18n.t('stop-scan')}">${i18n.t('stop-scan')}</button> <button class="stop button is-primary ${classMap({hidden: !this.videoRunning})}" @click="${() => this.stopScanning()}" title="${i18n.t('stop-scan')}">${i18n.t('stop-scan')}</button>
<select id="videoSource" class="button" @change=${this.updateSource}> <select id="videoSource" class="button" @change=${this.updateSource}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment