Skip to content

Commit

Permalink
Change elevation for the pressed and focused states
Browse files Browse the repository at this point in the history
  • Loading branch information
blasten committed May 21, 2015
1 parent 508f1cd commit 79797d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paper-button-behavior.html
Expand Up @@ -34,10 +34,10 @@
var e = 1;
if (this.disabled || !this.raised) {
e = 0;
} else if (this.active || this.pressed) {
e = 2;
} else if (this.pressed) {
e = 4;
} else if (this.focused) {
e = 3;
e = 2;
}
this._elevation = e;
}
Expand Down

0 comments on commit 79797d1

Please sign in to comment.