ampersand-multiselect-view
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -270,2 +270,7 @@ /* $AMPERSAND_VERSION */ | ||
} else { | ||
// Make sure values is an array of values | ||
if (!Array.isArray(values)) { | ||
values = [values]; | ||
} | ||
// Only keep values that actually exist in the option set | ||
@@ -272,0 +277,0 @@ this.value = values.filter(function(v) { |
{ | ||
"name": "ampersand-multiselect-view", | ||
"description": "A view module for intelligently rendering and validating multiple selectbox input. Works well with ampersand-form-view. Based off of ampersand-select-view.", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"author": { | ||
@@ -69,4 +69,3 @@ "name": "Kyle Farris", | ||
"demo": "beefy demo/demo.js:demo.js --cwd demo", | ||
"preversion": "git checkout master && git pull && npm ls", | ||
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish", | ||
"publish-patch": "npm version patch && git push origin master --tags && npm publish", | ||
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish", | ||
@@ -73,0 +72,0 @@ "publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish" |
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
54882
1175