Skip to content

Commit

Permalink
Fix eslint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcking65 committed Oct 11, 2017
1 parent b255fc5 commit 1751b4c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/menubar/menubar-2/js/PopupMenuAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,15 @@ PopupMenuAction.prototype.updateMenuStates = function () {

for (var i = 0; i < rbs.length; i++) {
var rb = rbs[i];
if(this.actionManager.fontSize === rb.textContent.toLowerCase()) {

if (this.actionManager.fontSize === rb.textContent.toLowerCase()) {
rb.setAttribute('aria-checked', 'true');
}
}
else {
rb.setAttribute('aria-checked', 'false');
}
rb.setAttribute('aria-checked', 'false');
}
}

};

/* EVENT HANDLERS */
Expand Down

0 comments on commit 1751b4c

Please sign in to comment.