Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
rename fn's
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvonne Yip committed Jul 16, 2014
1 parent f9e0592 commit 432be21
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions paper-input.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
this.label = this.placeholder;
},

focusAction: function(e) {
inputFocusAction: function(e) {
if (!this.pressed) {
if (this.floatingLabel) {
this.$.floatedLabel.classList.remove('hidden');
Expand All @@ -248,7 +248,9 @@
this.focused = true;
},

blurAction: function() {
inputBlurAction: function() {
this.super(arguments);

this.$.underlineHighlight.classList.remove('focused');
this.$.caret.classList.remove('focused');
if (this.floatingLabel) {
Expand Down

0 comments on commit 432be21

Please sign in to comment.