From ddab067ebffc0c1dd599a557269842c2291108eb Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Fri, 17 Oct 2014 11:33:33 -0400 Subject: [PATCH] jQuery requires a string to make this an update call --- static/js/graphing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/graphing.js b/static/js/graphing.js index 3ab543f65..4fa8e7f9c 100644 --- a/static/js/graphing.js +++ b/static/js/graphing.js @@ -901,7 +901,7 @@ ImageHistoryTree.prototype.toggle_ = function(d) { ImageHistoryTree.prototype.dispose = function() { var container = this.container_ ; $('#' + container).removeOverscroll(); - $('#' + container).html(); + $('#' + container).html(''); }; ////////////////////////////////////////////////////////////////////////////////