From 18aa33ba97b52cacf454e95c65d154000e052a1f Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Wed, 27 Mar 2013 10:49:32 -0700 Subject: [PATCH] Missed a const in d0667e --- js/lib/jxon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lib/jxon.js b/js/lib/jxon.js index caebc8e4f..ea29658d7 100644 --- a/js/lib/jxon.js +++ b/js/lib/jxon.js @@ -1,4 +1,4 @@ -const JXON = new (function () { +var JXON = new (function () { var sValueProp = "keyValue", sAttributesProp = "keyAttributes", sAttrPref = "@", /* you can customize these values */ aCache = [], rIsNull = /^\s*$/, rIsBool = /^(?:true|false)$/i;