Remove dangling console.log
Browse files
assets/scripts/src/overlay.js
CHANGED
|
@@ -114,7 +114,6 @@ export default class Overlay {
|
|
| 114 |
|
| 115 |
// Continue drawing while we can highlight or we are still fading out
|
| 116 |
if (canHighlight || this.overlayAlpha > 0) {
|
| 117 |
-
console.log(this.overlayAlpha);
|
| 118 |
// Add the overlay if not already there
|
| 119 |
if (!this.overlay.parentNode) {
|
| 120 |
document.body.appendChild(this.overlay);
|
|
|
|
| 114 |
|
| 115 |
// Continue drawing while we can highlight or we are still fading out
|
| 116 |
if (canHighlight || this.overlayAlpha > 0) {
|
|
|
|
| 117 |
// Add the overlay if not already there
|
| 118 |
if (!this.overlay.parentNode) {
|
| 119 |
document.body.appendChild(this.overlay);
|