From c51d66fe8d38498f8aeb7e2df2ffa85a76a893bb Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Fri, 23 Oct 2015 19:25:21 -0400 Subject: [PATCH] Correct how the diff is unpacked. --- prototype/UI/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prototype/UI/index.html b/prototype/UI/index.html index e4dfa403b..67996f162 100644 --- a/prototype/UI/index.html +++ b/prototype/UI/index.html @@ -140,7 +140,7 @@ element.classList.add("pure"); element.appendChild(toDOM(model.pure[stateName], stateName, source)); } else if(model.roll != null) { - element = rangeAndSyntaxToDOM(model.ranges[stateName], mapped, source, function(child) { return toDOM(child, stateName, source); }); + element = rangeAndSyntaxToDOM(model.roll.extract[stateName], model.roll.unwrap, source, function(child) { return toDOM(child, stateName, source); }); element.classList.add("diff"); element.classList.add("roll"); }