fix table resize method getHeaderWidth

This commit is contained in:
Felix Niklas 2015-10-28 10:41:35 +01:00
parent de26307458
commit 5062b4022c

View file

@ -384,12 +384,12 @@ class App.ControllerTable extends App.Controller
getHeaderWidths: (headers) ->
widths = _.reduce headers, (memo, col, i) =>
if col.style && col.width
if col.width
value = parseInt col.width, 10
unit = col.width.match(/[px|%]+/)[0]
else
# !!! sets the width to default width if not set
headers[i].style = { width: @baseColWidth+'px' }
headers[i].width = @baseColWidth+'px'
value = @baseColWidth
unit = 'px'