mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-13 20:00:05 +01:00
Fixes window error in Average module.Commented the test that were affecting other modules (#1330)
This commit is contained in:
committed by
Jeffrey Warren
parent
510fd7a934
commit
032971d269
@@ -16,7 +16,6 @@ module.exports = function Average(options, UI) {
|
||||
|
||||
// do the averaging
|
||||
function extraManipulation(pixels) {
|
||||
const $ = window.$;
|
||||
var i = 0, sum = [0, 0, 0, 0];
|
||||
while (i < pixels.data.length) {
|
||||
sum[0] += pixels.data[i++];
|
||||
|
||||
Reference in New Issue
Block a user