Skip to content

Commit 6a789e3

Browse files
authored
Merge pull request #15 from PixnBits/patch-1
README: move polyfill msg
2 parents 18949eb + 1c9b5a8 commit 6a789e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Mostly just naive wrappers around common DOM API inconsistencies, Cross browser
1313

1414
For example `events.on` works in all browsers ie8+ but it uses the native event system so actual event oddities will continue to exist. If you need __robust__ cross-browser support, use jQuery. If you are just tired of rewriting:
1515

16-
It does expect certain, polyfillable, es5 features to be present for which you can use `es5-shim` for ie8
17-
1816
```js
1917
if (document.addEventListener)
2018
return (node, eventName, handler, capture) =>
@@ -26,6 +24,8 @@ else if (document.attachEvent)
2624

2725
over and over again, or you need a ok `getComputedStyle` polyfill but don't want to include all of jQuery, use this.
2826

27+
dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use `es5-shim` for ie8
28+
2929
The real advantage to this collection is that any method can be required individually, meaning tools like Browserify or webpack will only include the exact methods you use. This is great for environments where jQuery doesn't make sense, such as `React` where you only occasionally need to do direct DOM manipulation.
3030

3131
Each level of the module can be required as a whole or you can drill down for a specific method or section:

0 commit comments

Comments
 (0)