You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`Array.prototype.find` for IE and older browsers ([core.js](https://github.com/zloirock/core-js#ecmascript-6-array) allows to include specific polyfills)
50
+
*`Array.prototype.find`, and `Number.isNaN()` for IE and older browsers. We supply a separate `gridstack.poly.js` for that
51
+
(part of `gridstack.all.js`) or you can look at other pollyfills
52
+
([core.js](https://github.com/zloirock/core-js#ecmascript-6-array) and [mozilla.org](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find)).
Note: It's not recommended to enable `nw`, `n`, `ne` resizing handles. Their behaviour may be unexpected.
260
264
261
-
## IE8 support
262
-
263
-
Support of IE8 is quite limited and is not a goal at this time. As far as IE8 doesn't support DOM Level 2 I cannot manipulate with
264
-
CSS stylesheet dynamically. As a workaround you can do the following:
265
-
266
-
- Create `gridstack-ie8.css` for your configuration (sample for grid with cell height of 60px can be found [here](https://gist.github.com/gridstack/6edfea5857f4cd73e6f1)).
267
-
- Include this CSS:
268
-
269
-
```html
270
-
<!--[if lt IE 9]>
271
-
<link rel="stylesheet" href="gridstack-ie8.css"/>
272
-
<![endif]-->
273
-
```
274
-
275
-
- You can use this python script to generate such kind of CSS:
0 commit comments