diff --git a/ignite-html-select.js b/ignite-html-select.js index 09803cb..02da033 100644 --- a/ignite-html-select.js +++ b/ignite-html-select.js @@ -514,15 +514,16 @@ IgniteTemplate.prototype.countries = function(placeholder = null) { * @param {Number} from The starting number. * @param {Number} to The ending number. * @param {String} placeholder The placeholder option if set, it's value will be -1, this will be the text displayed. + * @param {Number} placeholderValue The value of the placeholder option if the placeholder is set. Default is -1. * @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) { + IgniteTemplate.prototype.numbers = function(from = 0, to = 100, placeholder = null, placeholderValue = -1, descending = false) { //Generate html and populate the template with it. var html = ''; if (placeholder) { - html += ``; + html += ``; } if (descending) {