From 98f00eaf24690c8fb9264d0a86a3dfc5a0dd8558 Mon Sep 17 00:00:00 2001 From: David Ashby Date: Sat, 7 Mar 2015 18:47:16 -0500 Subject: [PATCH] hoist gData onto window so other functions can use it --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index bd3d4eb..4b13cae 100644 --- a/index.html +++ b/index.html @@ -130,7 +130,7 @@ // so long, so messy function showInfo(gData) { - gData + window.gData = gData // make the table, and the search bar Sheetsee.makeTable(gData, "#hackSpotsTable") Sheetsee.initiateTableFilter(gData, "#tableFilter", "#hackSpotsTable")