From 05a376f8aed7596fb1ff6d2417c52d21aa58f7b3 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Fri, 23 Oct 2015 19:09:52 -0400 Subject: [PATCH] Use the correct references. --- prototype/UI/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prototype/UI/index.html b/prototype/UI/index.html index a0495b9b5..34b39a45c 100644 --- a/prototype/UI/index.html +++ b/prototype/UI/index.html @@ -172,8 +172,8 @@ if (this.roll != null) { return new Diff({ roll: { - extract: roll.extract, - unwrap: roll.unwrap.map(function(x) { return x.map(transform); }) + extract: this.roll.extract, + unwrap: this.roll.unwrap.map(function(x) { return x.map(transform); }) } }); }