dom-form-serializer
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -272,3 +272,3 @@ (function (global, factory) { | ||
// Don't return options that are disabled or in a disabled optgroup | ||
!option.disabled && (!option.parentNode.disabled || option.parentNode.toLowerCase() === 'optgroup')) { | ||
!option.disabled && (!option.parentNode.disabled || option.parentNode.tagName.toLowerCase() === 'optgroup')) { | ||
// Get the specific value for the option | ||
@@ -275,0 +275,0 @@ value = option.value; |
@@ -44,3 +44,3 @@ import TypeRegistry from './TypeRegistry' | ||
(!option.parentNode.disabled || | ||
option.parentNode.toLowerCase() === 'optgroup')) { | ||
option.parentNode.tagName.toLowerCase() === 'optgroup')) { | ||
// Get the specific value for the option | ||
@@ -47,0 +47,0 @@ value = option.value |
{ | ||
"name": "dom-form-serializer", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Serialize form inputs", | ||
@@ -5,0 +5,0 @@ "main": "dist/dom-form-serializer.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
87118