Skip to content

Commit

Permalink
Use private setter for read-only focused property.
Browse files Browse the repository at this point in the history
  • Loading branch information
bicknellr committed Mar 30, 2016
1 parent ae979f3 commit d75a13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iron-control-state.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
this.style.pointerEvents = disabled ? 'none' : '';
if (disabled) {
this._oldTabIndex = this.tabIndex;
this.focused = false;
this._setFocused(false);
this.tabIndex = -1;
this.blur();
} else if (this._oldTabIndex !== undefined) {
Expand Down

0 comments on commit d75a13e

Please sign in to comment.