fix table sorting

This commit is contained in:
David 2015-02-28 16:45:34 -05:00
parent 0b5881fcc5
commit 3a406eadba
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,6 @@
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function() {
var gData
// var URL = "10z-2P8l88hLF35EodIjigs5cyCD7BtmfZS631JMtIUU" // test new spreadsheets
var URL = "0AnhMurQVK5pqdHU0UF9QTFRRNTQwR3hQTFdOV3laRGc"
Tabletop.init( { key: URL, callback: showInfo, simpleSheet: true } )
@ -112,7 +111,8 @@
// so long, so messy
function showInfo(gData) {
gData
// hoisting this so that other functions can find it
window.gData = gData;
// make the table, and the search bar
Sheetsee.makeTable(gData, "#hackSpotsTable")
Sheetsee.initiateTableFilter(gData, "#tableFilter", "#hackSpotsTable")