fixing multi-column pane alignment issues

master
Vishal Kumar 2018-01-03 02:33:11 -05:00
parent 0042d75ed0
commit 0e978bbf8c
7 changed files with 28 additions and 28 deletions

View File

@ -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
};
}

4
js/freeboard.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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
};
}

File diff suppressed because one or more lines are too long

View File

@ -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
};
}