dom-helpers
Advanced tools
Comparing version 3.2.0 to 3.2.1
{ | ||
"name": "dom-helpers", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "tiny modular DOM lib for ie8+ ", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -16,4 +16,2 @@ # dom-helpers | ||
It does expect certain, polyfillable, es5 features to be present for which you can use `es5-shim` for ie8 | ||
```js | ||
@@ -30,2 +28,4 @@ if (document.addEventListener) | ||
dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use `es5-shim` for ie8 | ||
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. | ||
@@ -32,0 +32,0 @@ |
@@ -76,3 +76,3 @@ 'use strict'; | ||
Moz: function Moz(e) { | ||
return 'moz' + e; | ||
return e.toLowerCase(); | ||
}, | ||
@@ -106,3 +106,3 @@ Webkit: function Webkit(e) { | ||
if (!animationEnd && 'animationName' in style) transitionEnd = 'animationend'; | ||
if (!animationEnd && 'animationName' in style) animationEnd = 'animationend'; | ||
@@ -109,0 +109,0 @@ style = null; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48762