Index: third_party/polymer/components-chromium/paper-tabs/paper-tab-extracted.js |
diff --git a/third_party/polymer/components-chromium/paper-tabs/paper-tab-extracted.js b/third_party/polymer/components-chromium/paper-tabs/paper-tab-extracted.js |
deleted file mode 100644 |
index b288612dbf30c1cf9aa8841ff7c6149e6ccd99ad..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/components-chromium/paper-tabs/paper-tab-extracted.js |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
- |
- |
- Polymer('paper-tab', { |
- |
- /** |
- * If true, ink ripple effect is disabled. |
- * |
- * @attribute noink |
- * @type boolean |
- * @default false |
- */ |
- noink: false, |
- |
- eventDelegates: { |
- down: 'downAction', |
- up: 'upAction' |
- }, |
- |
- downAction: function(e) { |
- if (this.noink || (this.parentElement && this.parentElement.noink)) { |
- return; |
- } |
- this.$.ink.downAction(e); |
- }, |
- |
- upAction: function() { |
- this.$.ink.upAction(); |
- }, |
- |
- cancelRipple: function() { |
- this.$.ink.upAction(); |
- } |
- |
- }); |
- |