This repository was archived by the owner on Mar 7, 2018. It is now read-only.

Description
I have this problem (see also this Stackoverflow issue): As you can see in the picture below, I am using a layout that has only one element in the first row but it has this weird right alignment issue (it extends too far right).

What is the problem?
Here is my first element:
<li data-row="1" data-col="1" data-sizex="15" data-sizey="3" >
<div data-id="some-id" data-view="MyWidget" data-title="Some title" style="background-color:#749396"></div>
</li>
I am using this setup in application.coffee (15 columns, 9 rows, each column/row is 100 pixels wide):
Dashing.on 'ready', ->
Dashing.widget_margins ||= [5, 5]
Dashing.widget_base_dimensions ||= [100, 100]
Dashing.numColumns ||= 15
When I specifically set the width on the li, it works.
<li data-row="1" data-col="1" data-sizex="15" data-sizey="3" style="width: 1640px;">