Skip to content

Commit b69ffc6

Browse files
author
Joe Kohlmann
committed
Fixed an bug (which we had fixed) in which the months timeline would redraw on top of itself.
1 parent fb05e7f commit b69ffc6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flask/static/js/main.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ var createTimeline = function(data, $container) {
7070
}
7171

7272
// DOM Setup
73-
var $timeline = $container;
73+
var $timeline = $container
74+
.text("")
75+
;
7476

7577
// Calculate Dimensions
7678
var margin = 80;

0 commit comments

Comments
 (0)