diff options
Diffstat (limited to 'core/src/jquery/selectrange.js')
-rw-r--r-- | core/src/jquery/selectrange.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/jquery/selectrange.js b/core/src/jquery/selectrange.js index b8f0d3dc122..f110bdbc501 100644 --- a/core/src/jquery/selectrange.js +++ b/core/src/jquery/selectrange.js @@ -27,9 +27,9 @@ import $ from 'jquery' * select a range in an input field * * @link http://stackoverflow.com/questions/499126/jquery-set-cursor-position-in-text-area - * @param {int} start start selection from - * @param {int} end number of char from start - * @return {Void} + * @param {number} start start selection from + * @param {number} end number of char from start + * @return {void} */ $.fn.selectRange = function(start, end) { return this.each(function() { |