File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,12 +33,13 @@ Demo is available [here](http://kdietrich.github.io/gridstack-angular/demo/).
3333##Requirements
3434
3535- Angular.js (>=1.3)
36- - gridstack.js (~ 0.2.4 )
36+ - gridstack.js (~ 0.2.5 )
3737
3838##Changes
3939
4040####v0.4.0-dev
4141- Fixed timing of events
42+ - gridstack.js 0.2.5 support
4243
4344####v0.3.0 (2016-02-17)
4445- Breaking Changes: ` data-gs-xyz ` attributes changed to ` gs-item-xyz ` . See demo.
Original file line number Diff line number Diff line change 1111 ],
1212 "dependencies" : {
1313 "angular" : " >=1.3" ,
14- "gridstack" : " ~0.2.4 "
14+ "gridstack" : " ~0.2.5 "
1515 },
1616 "license" : " MIT" ,
1717 "ignore" : [
Original file line number Diff line number Diff line change 1717
1818 this . removeItem = function ( element ) {
1919 if ( gridstack ) {
20- return gridstack . remove_widget ( element , false ) ;
20+ return gridstack . removeWidget ( element , false ) ;
2121 }
2222 return null ;
2323 } ;
2424
2525 this . addItem = function ( element ) {
2626 if ( gridstack ) {
27- gridstack . make_widget ( element ) ;
27+ gridstack . makeWidget ( element ) ;
2828 return element ;
2929 }
3030 return null ;
You can’t perform that action at this time.
0 commit comments