Skip to content

Commit

Permalink
fix(gridster): fix add_widget to use correct size_y when adding rows
Browse files Browse the repository at this point in the history
  • Loading branch information
kwak27 authored and vieron committed Jun 16, 2014
1 parent bb7463a commit 7d22e6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/jquery.gridster.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,9 @@
}else{
pos = {
col: col,
row: row
row: row,
size_x: size_x,
size_y: size_y
};

this.empty_cells(col, row, size_x, size_y);
Expand Down

0 comments on commit 7d22e6c

Please sign in to comment.