dom-event-helpers
Advanced tools
Comparing version 0.1.0 to 0.2.0
{ | ||
"name": "dom-event-helpers", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Super tiny DOM event helpers.", | ||
@@ -5,0 +5,0 @@ "repository": "git@github.com:jsor/dom-event-helpers.git", |
@@ -9,3 +9,3 @@ import optionsSupport from './options-support'; | ||
if (options.once && !optionsSupport(node).once) { | ||
if (options.once && !optionsSupport().once) { | ||
cb = (event) => { | ||
@@ -21,5 +21,5 @@ rm(); | ||
node.addEventListener(type, cb, optionsArgument(node, options)); | ||
node.addEventListener(type, cb, optionsArgument(options)); | ||
return rm; | ||
}; |
Sorry, the diff of this file is not supported yet
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
31913