diff --git a/paper-input.html b/paper-input.html
index cdd08c8..2c0c78e 100644
--- a/paper-input.html
+++ b/paper-input.html
@@ -233,7 +233,7 @@
this.label = this.placeholder;
},
- inputFocusAction: function(e) {
+ inputFocusAction: function() {
if (!this.pressed) {
if (this.floatingLabel) {
this.$.floatedLabel.classList.remove('hidden');
@@ -243,7 +243,8 @@
this.$.label.classList.add('hidden');
this.$.underlineHighlight.classList.add('focused');
this.$.caret.classList.add('focused');
- this.$.input.focus();
+
+ this.super(arguments);
}
this.focused = true;
},