From dd4792ed04d2cb3c4447e7a23d0ad63614d9be21 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Thu, 18 Nov 2021 14:22:40 -0800 Subject: [PATCH] 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. --- ignite-html-select.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ignite-html-select.js b/ignite-html-select.js index 3b57bc4..9852f6e 100644 --- a/ignite-html-select.js +++ b/ignite-html-select.js @@ -15,6 +15,16 @@ import { IgniteTemplate } from "../ignite-html/ignite-template.js"; //Generate html and populate the template with it. 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) { html += ``; }