diff --git a/paper-input.html b/paper-input.html index 44f7150..9ac3096 100644 --- a/paper-input.html +++ b/paper-input.html @@ -129,6 +129,15 @@ this.$.input.focus(); }, + /** + * Sets the selection range on `input`. + * + * @method setSelectionRange + */ + setSelectionRange: function(selectionStart, selectionEnd) { + this.$.input.setSelectionRange(selectionStart, selectionEnd); + }, + valueChanged: function() { this.$.decorator.updateLabelVisibility(this.value); },