From 1bf0a97daa36e1e2990714b469c1917a3ce76151 Mon Sep 17 00:00:00 2001 From: Sunpy Date: Wed, 21 Aug 2019 07:48:12 +0200 Subject: [PATCH] Removed leftover --- www/js/graph.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/www/js/graph.js b/www/js/graph.js index a19edf7..49d5352 100644 --- a/www/js/graph.js +++ b/www/js/graph.js @@ -90,12 +90,11 @@ class Graph { } class MovingGraph extends Graph { - constructor(canvas, color, maxHeight, bufferLength, bufferType, smooth) { + constructor(canvas, color, maxHeight, bufferLength, bufferType) { super(canvas, color, maxHeight); let _bufferType = bufferType || Float32Array; this.buffer = new _bufferType(bufferLength || 64); - this.smooth = smooth || false; this.offset = 0; }