diff options
Diffstat (limited to 'core/src/jquery/selectrange.js')
-rw-r--r-- | core/src/jquery/selectrange.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/jquery/selectrange.js b/core/src/jquery/selectrange.js index 914832d4538..b8f0d3dc122 100644 --- a/core/src/jquery/selectrange.js +++ b/core/src/jquery/selectrange.js @@ -25,10 +25,11 @@ 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 - * @returns {Void} + * @return {Void} */ $.fn.selectRange = function(start, end) { return this.each(function() { |