Index: third_party/polymer/v0_8/components-chromium/paper-button/paper-button-extracted.js |
diff --git a/third_party/polymer/v0_8/components-chromium/paper-button/paper-button-extracted.js b/third_party/polymer/v0_8/components-chromium/paper-button/paper-button-extracted.js |
deleted file mode 100644 |
index a4b23fc5399987ea96d4f94b29f348b6e14988a5..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/v0_8/components-chromium/paper-button/paper-button-extracted.js |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
- |
- |
- Polymer({ |
- |
- is: 'paper-button', |
- |
- behaviors: [ |
- Polymer.PaperButtonBehavior |
- ], |
- |
- properties: { |
- |
- /** |
- * If true, the button should be styled with a shadow. |
- */ |
- raised: { |
- type: Boolean, |
- reflectToAttribute: true, |
- value: false, |
- observer: '_calculateElevation' |
- } |
- }, |
- |
- _calculateElevation: function() { |
- if (!this.raised) { |
- this._elevation = 0; |
- } else { |
- Polymer.PaperButtonBehaviorImpl._calculateElevation.apply(this); |
- } |
- }, |
- |
- _computeContentClass: function(receivedFocusFromKeyboard) { |
- var className = 'content '; |
- if (receivedFocusFromKeyboard) { |
- className += ' keyboard-focus'; |
- } |
- return className; |
- } |
- }); |
- |