3 /** @polymerBehavior */
4 Polymer.PaperButtonBehaviorImpl = {
15 '_calculateElevation(focused, disabled, active, pressed, receivedFocusFromKeyboard)'
23 _calculateElevation: function() {
27 } else if (this.active || this.pressed) {
29 } else if (this.receivedFocusFromKeyboard) {
36 /** @polymerBehavior */
37 Polymer.PaperButtonBehavior = [
38 Polymer.IronButtonState,
39 Polymer.IronControlState,
40 Polymer.PaperButtonBehaviorImpl