Years now allows negative numbers for from to subtract years from the to. Setting to year to 0, null, undefined now gets the current year. Combination of these two allows easier birth year inputs.

This commit is contained in:
Matt Mo 2021-11-18 14:22:40 -08:00
parent bce0441003
commit dd4792ed04

View File

@ -15,6 +15,16 @@ import { IgniteTemplate } from "../ignite-html/ignite-template.js";
//Generate html and populate the template with it. //Generate html and populate the template with it.
var html = ''; var html = '';
//If to is 0, null, or undefined, use the current year.
if (to == 0 || !to) {
to = new Date().getFullYear();
}
//If from is negative, adjust it with the to year.
if (from < 0) {
from += to;
}
if (placeholder) { if (placeholder) {
html += `<option value='0'>${placeholder}</option>`; html += `<option value='0'>${placeholder}</option>`;
} }