inter-mediator-plugin-jqueryfileupload
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -173,3 +173,3 @@ /* | ||
for (const ext of IMParts_Catalog.jquery_fileupload.fileExtRequirements) { | ||
if (new RegExp(`\.(${ext})$/i`).test(data.files[0].name)) { | ||
if (new RegExp(`\.(${ext})$`, 'i').test(data.files[0].name)) { | ||
hasMatchExt = true | ||
@@ -304,3 +304,3 @@ } | ||
for (const ext of IMParts_Catalog.jquery_fileupload.fileExtRequirements) { | ||
if (new RegExp(`\.(${ext})$/i`).test(targetFile.name)) { | ||
if (new RegExp(`\.(${ext})$`, 'i').test(targetFile.name)) { | ||
hasMatchExt = true | ||
@@ -307,0 +307,0 @@ } |
{ | ||
"name": "inter-mediator-plugin-jqueryfileupload", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "INTER-Mediator plug-in to use the JQuery FileUpload.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
19155