Index: bootstrap/css/bootstrap-theme.css =================================================================== diff -u -r8ee70ab7b244d0478ff83ad77bea5ef68d629554 -r0d1174d0c93898a06873a1fb75fe13fdd86b5afc --- bootstrap/css/bootstrap-theme.css (.../bootstrap-theme.css) (revision 8ee70ab7b244d0478ff83ad77bea5ef68d629554) +++ bootstrap/css/bootstrap-theme.css (.../bootstrap-theme.css) (revision 0d1174d0c93898a06873a1fb75fe13fdd86b5afc) @@ -509,13 +509,7 @@ type = "post"; } - $.getJSON(url, - { - tags: "mount rainier", - tagmode: "any", - format: "json" - }, - function(data) { + $.post(url, JSON.stringify(queryString), function(data, textStatus) { var chartLabels = []; var chartData = []; @@ -543,7 +537,8 @@ //console.log(config); window.myRadar = new Chart(document.getElementById('canvas'), config); - }); + }, "json"); + }); </script>