Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixing multi-column pane alignment issues
  • Loading branch information
bugvish committed Jan 3, 2018
1 parent 0042d75 commit 0e978bb
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion js/freeboard.js
Expand Up @@ -1259,7 +1259,7 @@ function PaneModel(theFreeboardModel, widgetPlugins) {
width: self.width(),
row: self.row,
col: self.col,
col_width: self.col_width(),
col_width: Number(self.col_width()),
widgets: widgets
};
}
Expand Down
4 changes: 2 additions & 2 deletions js/freeboard.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/freeboard.plugins.min.js

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions js/freeboard.thirdparty.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/freeboard_plugins.js
Expand Up @@ -1259,7 +1259,7 @@ function PaneModel(theFreeboardModel, widgetPlugins) {
width: self.width(),
row: self.row,
col: self.col,
col_width: self.col_width(),
col_width: Number(self.col_width()),
widgets: widgets
};
}
Expand Down
4 changes: 2 additions & 2 deletions js/freeboard_plugins.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/js/freeboard/PaneModel.js
Expand Up @@ -82,7 +82,7 @@ function PaneModel(theFreeboardModel, widgetPlugins) {
width: self.width(),
row: self.row,
col: self.col,
col_width: self.col_width(),
col_width: Number(self.col_width()),
widgets: widgets
};
}
Expand Down

1 comment on commit 0e978bb

@bugvish
Copy link
Contributor Author

@bugvish bugvish commented on 0e978bb Jan 3, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should resolve #235 . Open for comments/feedback. Previously problematic board panes will need to be manually re-positioned then saved. New board panes should now align properly on their own.

Please sign in to comment.