diff --git a/ignite-html-input.js b/ignite-html-input.js index e3d73c2..a19121d 100644 --- a/ignite-html-input.js +++ b/ignite-html-input.js @@ -3,7 +3,7 @@ import { IgniteTemplate } from "../ignite-html/ignite-template.js"; /** * 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. - * @returns This ignite template. + * @returns {IgniteTemplate} This ignite template. */ IgniteTemplate.prototype.inputDigits = function (max = -1) { this.on("keydown", e => { @@ -33,7 +33,7 @@ IgniteTemplate.prototype.inputDigits = function (max = -1) { * 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 {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) { 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. * @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) { this.on("keydown", e => {