diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-15 19:51:53 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 14:52:09 -0500 | 
| commit | 0c8f567e6db8f87974f472cac6bb065a5dd4d754 (patch) | |
| tree | ec6c1e79b04193d9a387be51fb130b98ca576198 /ext/mixed/js | |
| parent | 56567903a5935a7e57e7a8134e3c118a2188babb (diff) | |
Fix indentation
Diffstat (limited to 'ext/mixed/js')
| -rw-r--r-- | ext/mixed/js/text-scanner.js | 22 | 
1 files changed, 11 insertions, 11 deletions
| diff --git a/ext/mixed/js/text-scanner.js b/ext/mixed/js/text-scanner.js index db3835cf..ff0eac8b 100644 --- a/ext/mixed/js/text-scanner.js +++ b/ext/mixed/js/text-scanner.js @@ -141,18 +141,18 @@ class TextScanner {          const textSourceCurrentPrevious = this.textSourceCurrent !== null ? this.textSourceCurrent.clone() : null;          this.searchAt(primaryTouch.clientX, primaryTouch.clientY, 'touchStart') -        .then(() => { -            if ( -                this.textSourceCurrent === null || -                this.textSourceCurrent.equals(textSourceCurrentPrevious) -            ) { -                return; -            } +            .then(() => { +                if ( +                    this.textSourceCurrent === null || +                    this.textSourceCurrent.equals(textSourceCurrentPrevious) +                ) { +                    return; +                } -            this.preventScroll = true; -            this.preventNextContextMenu = true; -            this.preventNextMouseDown = true; -        }); +                this.preventScroll = true; +                this.preventNextContextMenu = true; +                this.preventNextMouseDown = true; +            });      }      onTouchEnd(e) { |