From 367c0373f9e5b684f17b0fd2eb63e0b5e9c5bacd Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Sat, 18 Oct 2014 07:55:55 -0700 Subject: [PATCH] Insert data attribute onto table header columns --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 9b6aaaa..2a05aee 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -61,7 +61,7 @@ function buildTable(results) { var rows = "" results.columns.forEach(function(col) { - cols += "" + col + ""; + cols += "" + col + ""; }); results.rows.forEach(function(row) {