| OLD | NEW |
| 1 Polymer({ | 1 |
| 2 Polymer({ |
| 2 is: 'paper-fab', | 3 is: 'paper-fab', |
| 3 | 4 |
| 4 behaviors: [ | 5 behaviors: [ |
| 5 Polymer.PaperButtonBehavior | 6 Polymer.PaperButtonBehavior |
| 6 ], | 7 ], |
| 7 | 8 |
| 8 properties: { | 9 properties: { |
| 9 /** | 10 /** |
| 10 * The URL of an image for the icon. If the src property is specified, | 11 * The URL of an image for the icon. If the src property is specified, |
| 11 * the icon property should not be. | 12 * the icon property should not be. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 }, | 49 }, |
| 49 | 50 |
| 50 _computeContentClass: function(receivedFocusFromKeyboard) { | 51 _computeContentClass: function(receivedFocusFromKeyboard) { |
| 51 var className = 'content'; | 52 var className = 'content'; |
| 52 if (receivedFocusFromKeyboard) { | 53 if (receivedFocusFromKeyboard) { |
| 53 className += ' keyboard-focus'; | 54 className += ' keyboard-focus'; |
| 54 } | 55 } |
| 55 return className; | 56 return className; |
| 56 } | 57 } |
| 57 | 58 |
| 58 }); | 59 }); |
| OLD | NEW |