# HG changeset patch # User hamidouk # Date 1320855909 -3600 # Node ID 079b745d04380825b8b53a36e2e8426891087f66 # Parent ec3e6d34462c3dbe13ef8eb1136eeb45ae58c442 fixed float collapsing bug. diff -r ec3e6d34462c -r 079b745d0438 src/js/widgets/segmentsWidget.js --- a/src/js/widgets/segmentsWidget.js Wed Nov 09 17:06:23 2011 +0100 +++ b/src/js/widgets/segmentsWidget.js Wed Nov 09 17:25:09 2011 +0100 @@ -17,7 +17,8 @@ var self = this; var annotations = this._serializer._data.annotations; - this.selector.append("
"); + this.selector.css("overflow", "auto"); // clear the floats - FIXME : to refactor ? + this.selector.append(""); this.positionMarker = this.selector.children(":first"); this._Popcorn.listen("timeupdate", IriSP.wrap(this, this.positionUpdater));