update(Gridstack): update to version 0.2.5 (#9430)

* Update existing function to version 0.2.5

May there are new functions

* Update existing tests to version 0.2.5
This commit is contained in:
PascalSenn
2016-05-26 15:45:27 +02:00
committed by Masahiro Wakame
parent 37fa4e22fd
commit 3a5e413626
2 changed files with 32 additions and 32 deletions

View File

@@ -12,9 +12,9 @@ var options = <IGridstackOptions> {
};
var gridstack:GridStack = $(document).gridstack(options);
gridstack.add_widget("test", 1, 2, 3, 4, true);
gridstack.batch_update();
gridstack.cell_height();;
gridstack.cell_height(2);
gridstack.cell_width();
gridstack.get_cell_from_pixel(<MousePosition>{ left:20, top: 20 });
gridstack.addWidget("test", 1, 2, 3, 4, true);
gridstack.batchUpdate();
gridstack.cellHeight();;
gridstack.cellHeight(2);
gridstack.cellWidth();
gridstack.getCellFromPixel(<MousePosition>{ left:20, top: 20 });