Improved documentation.

This commit is contained in:
Matt Mo 2021-08-11 10:45:24 -07:00
parent 670d417312
commit a7f052bab1

View File

@ -3,7 +3,7 @@ import { IgniteTemplate } from "../ignite-html/ignite-template.js";
/** /**
* Forces an input to only allow digits for input. * Forces an input to only allow digits for input.
* @param {Number} max Max number of digits allowed to be inputed. Default is -1 which disables this feature. * @param {Number} max Max number of digits allowed to be inputed. Default is -1 which disables this feature.
* @returns This ignite template. * @returns {IgniteTemplate} This ignite template.
*/ */
IgniteTemplate.prototype.inputDigits = function (max = -1) { IgniteTemplate.prototype.inputDigits = function (max = -1) {
this.on("keydown", e => { this.on("keydown", e => {
@ -33,7 +33,7 @@ IgniteTemplate.prototype.inputDigits = function (max = -1) {
* Forces an input to only allow letters for input. * Forces an input to only allow letters for input.
* @param {Number} max Max number of letters allow to be inputed. Default is -1 which disables this feature. * @param {Number} max Max number of letters allow to be inputed. Default is -1 which disables this feature.
* @param {Boolean} allowSpace Whether or not to allow spaces to be entered. Default is true. * @param {Boolean} allowSpace Whether or not to allow spaces to be entered. Default is true.
* @returns This ignite template. * @returns {IgniteTemplate} This ignite template.
*/ */
IgniteTemplate.prototype.inputLetters = function (max = -1, allowSpace = true) { IgniteTemplate.prototype.inputLetters = function (max = -1, allowSpace = true) {
this.on("keydown", e => { this.on("keydown", e => {
@ -67,7 +67,7 @@ IgniteTemplate.prototype.inputLetters = function (max = -1, allowSpace = true) {
/** /**
* Forces an input to only allow email based characters for input. * Forces an input to only allow email based characters for input.
* @param {Number} max Max number of letters allowed to be inputed. Default is -1 which disables this feature. * @param {Number} max Max number of letters allowed to be inputed. Default is -1 which disables this feature.
* @returns This ignite template. * @returns {IgniteTemplate} This ignite template.
*/ */
IgniteTemplate.prototype.inputEmail = function(max = -1) { IgniteTemplate.prototype.inputEmail = function(max = -1) {
this.on("keydown", e => { this.on("keydown", e => {