Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Unified Diff: chrome/browser/resources/chromeos/login/gaia_buttons.js

Issue 1234443002: Removed <paper-icon-button> bug workaround. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/login/gaia_buttons.js
diff --git a/chrome/browser/resources/chromeos/login/gaia_buttons.js b/chrome/browser/resources/chromeos/login/gaia_buttons.js
index 467626826227f918bbf79456538c46ac2fc3fd25..7ae8de3b320b767eb44435d00daf99f43e8227c6 100644
--- a/chrome/browser/resources/chromeos/login/gaia_buttons.js
+++ b/chrome/browser/resources/chromeos/login/gaia_buttons.js
@@ -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';
- });
- }
}
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698