fix(overlays): update keyboard focus management

This commit is contained in:
Adam Bradley
2016-03-05 20:32:21 -06:00
parent 4922fc6075
commit e639457654
5 changed files with 68 additions and 35 deletions

View File

@ -68,8 +68,8 @@ export class MenuToggle {
*/
get isHidden() {
if (this._inNavbar && this._viewCtrl) {
if (this._viewCtrl.isRoot()) {
// this is the root view, so it should always show
if (this._viewCtrl.isFirst()) {
// this is the first view, so it should always show
return false;
}