From 1ca7447e0f7fd7a6519466eccff48f726cded165 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 21 Oct 2015 11:17:39 -0400 Subject: [PATCH] Process the diff. --- prototype/UI/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/prototype/UI/index.html b/prototype/UI/index.html index 856b5e30e..dc339c26a 100644 --- a/prototype/UI/index.html +++ b/prototype/UI/index.html @@ -75,6 +75,8 @@ loadJSON('diff.json', function (json) { document.getElementById("before").textContent = json.a; document.getElementById("after").textContent = json.b; + + syntax(json["diff"]); });