about summary refs log tree commit diff
path: root/wqflask/wqflask/static/new/javascript
diff options
context:
space:
mode:
authorzsloan2017-01-03 16:26:24 +0000
committerzsloan2017-01-03 16:26:24 +0000
commit2fe052c10bc1e6468da277a6afbb51468e447c47 (patch)
tree7edc4154e7ec9e1ac907b24ca20e11c7292e4b62 /wqflask/wqflask/static/new/javascript
parentb88eb7fcbd24462efb34fd3e30bfb64483223935 (diff)
downloadgenenetwork2-2fe052c10bc1e6468da277a6afbb51468e447c47.tar.gz
Fixed appearance of samples tables in show_trait to look like all the other tables
Disabled sorting for the first column (check box) of the samples tables
Diffstat (limited to 'wqflask/wqflask/static/new/javascript')
-rw-r--r--wqflask/wqflask/static/new/javascript/histogram.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/wqflask/wqflask/static/new/javascript/histogram.js b/wqflask/wqflask/static/new/javascript/histogram.js
index d26d0c03..f71080e8 100644
--- a/wqflask/wqflask/static/new/javascript/histogram.js
+++ b/wqflask/wqflask/static/new/javascript/histogram.js
@@ -103,7 +103,6 @@
 
     Histogram.prototype.add_bars = function() {
       var bar, rect_width;
-      console.log("bar_width:", this.x_scale(this.histogram_data[0].dx));
       bar = this.svg.selectAll(".bar").data(this.histogram_data).enter().append("g").attr("class", "bar").attr("transform", (function(_this) {
         return function(d) {
           return "translate(" + _this.x_scale(d.x) + "," + _this.y_scale(d.y) + ")";