From 0a3d4fe96967ba31ba774644a98ccee5bb731c44 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Tue, 24 Aug 2021 15:26:56 -0700 Subject: [PATCH] Changing docs to help VSCode detect extensions. --- ignite-html-select.js | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/ignite-html-select.js b/ignite-html-select.js index b9db504..f1da84a 100644 --- a/ignite-html-select.js +++ b/ignite-html-select.js @@ -11,7 +11,7 @@ import { IgniteTemplate } from "../ignite-html/ignite-template.js"; * @example * .years(1950, 2021, true) //Generates a select descending, 2021, 2020, 2019.. ect. */ -IgniteTemplate.prototype.years = function (from, to, placeholder = null, descending = false) { +function years(from, to, placeholder = null, descending = false) { //Generate html and populate the template with it. var html = ''; @@ -32,13 +32,15 @@ IgniteTemplate.prototype.years = function (from, to, placeholder = null, descend return this.innerHTML(html); }; +IgniteTemplate.prototype.years = years; + /** * Generates a series of months. * @param {String} placeholder The placeholder option, it's value will be 0, if set this text will be shown. * @param {Boolean} shorthand If true the option text will be the shorthand version of the month. * @returns {IgniteTemplate} This ignite template. */ -IgniteTemplate.prototype.months = function (placeholder = null, shorthand = true) { +function months(placeholder = null, shorthand = true) { //Generate html and populate the template with it. var html = ''; @@ -81,6 +83,8 @@ IgniteTemplate.prototype.months = function (placeholder = null, shorthand = true return this.innerHTML(html); } +IgniteTemplate.prototype.months = months; + /** * Generates a series of days. * @param {Number} from The starting day. @@ -89,7 +93,7 @@ IgniteTemplate.prototype.months = function (placeholder = null, shorthand = true * @param {Boolean} descending Whether or not the to day is first and the from year is last. * @returns {IgniteTemplate} This ignite template. */ -IgniteTemplate.prototype.days = function (from = 1, to = 31, placeholder = null, descending = false) { +function days(from = 1, to = 31, placeholder = null, descending = false) { //Generate html and populate the template with it. var html = ''; @@ -110,6 +114,8 @@ IgniteTemplate.prototype.days = function (from = 1, to = 31, placeholder = null, return this.innerHTML(html); } +IgniteTemplate.prototype.days = days; + /** * Generates a series of numbers. * @param {Number} from The starting number. @@ -118,7 +124,7 @@ IgniteTemplate.prototype.days = function (from = 1, to = 31, placeholder = null, * @param {Boolean} descending Whether or not the from number if first and the to number is last. * @returns {IgniteTemplate} This ignite template. */ -IgniteTemplate.prototype.numbers = function (from = 0, to = 100, placeholder = null, descending = false) { +function numbers(from = 0, to = 100, placeholder = null, descending = false) { //Generate html and populate the template with it. var html = ''; @@ -139,13 +145,15 @@ IgniteTemplate.prototype.numbers = function (from = 0, to = 100, placeholder = n return this.innerHTML(html); } +IgniteTemplate.prototype.numbers = numbers; + /** * Generates a series of options based on key value pairs. * @param {Array|Object} options An array of strings or list of key value pairs to create options from. * @param {*} placeholder The placeholder option, it's value will be 0, if set this text will be shown. * @returns {IgniteTemplate} This ignite template. */ -IgniteTemplate.prototype.options = function (options, placeholder = null) { +function options(options, placeholder = null) { //Generate html and populate the template with it. var html = ''; @@ -165,4 +173,6 @@ IgniteTemplate.prototype.options = function (options, placeholder = null) { } return this.innerHTML(html); -} \ No newline at end of file +} + +IgniteTemplate.prototype.options = options; \ No newline at end of file