Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e91937e

Browse files
author
Alain Dumesny
authored
Merge pull request gridstack#1100 from adumesny/develop
removed obsolete nonCamelCase methods
2 parents 16fb0ba + c582b6e commit e91937e

File tree

4 files changed

+20
-519
lines changed

4 files changed

+20
-519
lines changed

doc/CHANGES.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ also now cache each column layout so you can go back to say 12 column and not lo
138138
- `'auto'` value for `cellHeight` option
139139
- fix `setStatic` method
140140
- add `setAnimation` method to API
141-
- add `setGridWidth` method ([#227](https://github.com/gridstack/gridstack.js/issues/227))
141+
- add `setColumn` method ([#227](https://github.com/gridstack/gridstack.js/issues/227))
142142
- add `removable`/`removeTimeout` *(experimental)*
143143
- add `detachGrid` parameter to `destroy` method ([#216](https://github.com/gridstack/gridstack.js/issues/216)) (thanks @jhpedemonte)
144144
- add `useOffset` parameter to `getCellFromPixel` method ([#237](https://github.com/gridstack/gridstack.js/issues/237))
@@ -149,45 +149,45 @@ also now cache each column layout so you can go back to say 12 column and not lo
149149
## v0.2.4 (2016-02-15)
150150

151151
- fix closure compiler/linter warnings
152-
- add `static_grid` option.
153-
- add `min_width`/`min_height` methods (Thanks to @cvillemure)
152+
- add `staticGrid` option.
153+
- add `minWidth`/`minHeight` methods (Thanks to @cvillemure)
154154
- add `destroy` method (Thanks to @zspitzer)
155-
- add `placeholder_text` option (Thanks to @slauyama)
156-
- add `handle_class` option.
157-
- add `make_widget` method.
155+
- add `placeholderText` option (Thanks to @slauyama)
156+
- add `handleClass` option.
157+
- add `makeWidget` method.
158158
- lodash v 4.x support (Thanks to @andrewr88)
159159

160160
## v0.2.3 (2015-06-23)
161161

162162
- gridstack-extra.css
163163
- add support of lodash.js
164-
- add `is_area_empty` method
164+
- add `isAreaEmpty` method
165165
- nested grids
166-
- add `batch_update`/`commit` methods
166+
- add `batchUpdate`/`commit` methods
167167
- add `update` method
168168
- allow to override `resizable`/`draggable` options
169169
- add `disable`/`enable` methods
170-
- add `get_cell_from_pixel` (thanks to @juchi)
170+
- add `getCellFromPixel` (thanks to @juchi)
171171
- AMD support
172172
- fix nodes sorting
173173
- improved touch devices support
174-
- add `always_show_resize_handle` option
174+
- add `alwaysShowResizeHandle` option
175175
- minor fixes and improvements
176176

177177
## v0.2.2 (2014-12-23)
178178

179179
- fix grid initialization
180-
- add `cell_height`/`cell_width` API methods
180+
- add `cellHeight`/`cellWidth` API methods
181181
- fix boolean attributes ([#31](https://github.com/gridstack/gridstack.js/issues/31))
182182

183183
## v0.2.1 (2014-12-09)
184184

185185
- add widgets locking ([#19](https://github.com/gridstack/gridstack.js/issues/19))
186-
- add `will_it_fit` API method
186+
- add `willItFit` API method
187187
- fix auto-positioning ([#20](https://github.com/gridstack/gridstack.js/issues/20))
188188
- add animation (thanks to @ishields)
189189
- fix `y` coordinate calculation when dragging ([#18](https://github.com/gridstack/gridstack.js/issues/18))
190-
- fix `remove_widget` ([#16](https://github.com/gridstack/gridstack.js/issues/16))
190+
- fix `removeWidget` ([#16](https://github.com/gridstack/gridstack.js/issues/16))
191191
- minor fixes
192192

193193

@@ -196,7 +196,7 @@ also now cache each column layout so you can go back to say 12 column and not lo
196196
- add `height` option
197197
- auto-generate css rules (widgets `height` and `top`)
198198
- add `GridStackUI.Utils.sort` utility function
199-
- add `remove_all` API method
199+
- add `removeAll` API method
200200
- add `resize` and `move` API methods
201201
- add `resizable` and `movable` API methods
202202
- add `data-gs-no-move` attribute

karma.conf.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module.exports = function(config) {
1616
// list of files / patterns to load in the browser
1717
files: [
1818
'node_modules/jquery/dist/jquery.min.js',
19-
'node_modules/core-js/client/shim.min.js',
2019
'src/gridstack.js',
2120
'dist/jquery-ui.min.js',
2221
'src/gridstack.jQueryUI.js',

0 commit comments

Comments
 (0)