From 2572c950288ad59b0fe0564009712e0be8377dec Mon Sep 17 00:00:00 2001 From: bluesaxman Date: Fri, 4 Sep 2020 10:33:04 -0600 Subject: [PATCH] minor corrections for DDF syntax change --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 0a41da9..1b79db6 100644 --- a/index.html +++ b/index.html @@ -30,10 +30,10 @@ function generateDeck(DDF) { DDF.sort(function (a,b) { return a.dataIndex - b.dataIndex; }); - DDF.forEach( function (data) { + DDF.forEach( function (dataBlock) { var tempcards = []; cards.forEach( function (current) { - DDF.data.forEach( function (value) { + dataBlock.data.forEach( function (value) { tempcards.push(current+value); } ); } );