Commit 285317b7 authored by dzhioev's avatar dzhioev Committed by Commit bot

Removed <paper-icon-button> bug workaround.

The bug was fixed in paper-icon-button v1.0.2.

BUG=none

Review URL: https://codereview.chromium.org/1234443002

Cr-Commit-Position: refs/heads/master@{#338378}
parent 99c0c42a
......@@ -50,7 +50,6 @@ Polymer({
disabled: {
type: Boolean,
value: false,
observer: 'disabledChanged_',
reflectToAttribute: true
},
......@@ -66,16 +65,6 @@ Polymer({
onClick_: function(e) {
if (this.disabled)
e.stopPropagation();
},
disabledChanged_: function(disabled) {
// TODO(dzhioev): remove after
// https://github.com/PolymerElements/paper-icon-button/issues/20 is fixed.
if (!disabled) {
this.async(function() {
this.$.iconButton.tabIndex = '0';
});
}
}
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment