Changing docs to help VSCode detect extensions.
This commit is contained in:
parent
de96f13f76
commit
0a3d4fe969
@ -11,7 +11,7 @@ import { IgniteTemplate } from "../ignite-html/ignite-template.js";
|
|||||||
* @example
|
* @example
|
||||||
* .years(1950, 2021, true) //Generates a select descending, 2021, 2020, 2019.. ect.
|
* .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.
|
//Generate html and populate the template with it.
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
@ -32,13 +32,15 @@ IgniteTemplate.prototype.years = function (from, to, placeholder = null, descend
|
|||||||
return this.innerHTML(html);
|
return this.innerHTML(html);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
IgniteTemplate.prototype.years = years;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a series of months.
|
* 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 {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.
|
* @param {Boolean} shorthand If true the option text will be the shorthand version of the month.
|
||||||
* @returns {IgniteTemplate} This ignite template.
|
* @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.
|
//Generate html and populate the template with it.
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
@ -81,6 +83,8 @@ IgniteTemplate.prototype.months = function (placeholder = null, shorthand = true
|
|||||||
return this.innerHTML(html);
|
return this.innerHTML(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IgniteTemplate.prototype.months = months;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a series of days.
|
* Generates a series of days.
|
||||||
* @param {Number} from The starting day.
|
* @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.
|
* @param {Boolean} descending Whether or not the to day is first and the from year is last.
|
||||||
* @returns {IgniteTemplate} This ignite template.
|
* @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.
|
//Generate html and populate the template with it.
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
@ -110,6 +114,8 @@ IgniteTemplate.prototype.days = function (from = 1, to = 31, placeholder = null,
|
|||||||
return this.innerHTML(html);
|
return this.innerHTML(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IgniteTemplate.prototype.days = days;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a series of numbers.
|
* Generates a series of numbers.
|
||||||
* @param {Number} from The starting number.
|
* @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.
|
* @param {Boolean} descending Whether or not the from number if first and the to number is last.
|
||||||
* @returns {IgniteTemplate} This ignite template.
|
* @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.
|
//Generate html and populate the template with it.
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
@ -139,13 +145,15 @@ IgniteTemplate.prototype.numbers = function (from = 0, to = 100, placeholder = n
|
|||||||
return this.innerHTML(html);
|
return this.innerHTML(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IgniteTemplate.prototype.numbers = numbers;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a series of options based on key value pairs.
|
* 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 {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.
|
* @param {*} placeholder The placeholder option, it's value will be 0, if set this text will be shown.
|
||||||
* @returns {IgniteTemplate} This ignite template.
|
* @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.
|
//Generate html and populate the template with it.
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
@ -166,3 +174,5 @@ IgniteTemplate.prototype.options = function (options, placeholder = null) {
|
|||||||
|
|
||||||
return this.innerHTML(html);
|
return this.innerHTML(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IgniteTemplate.prototype.options = options;
|
Loading…
x
Reference in New Issue
Block a user