diff --git a/js/angular/directive/menuToggle.js b/js/angular/directive/menuToggle.js index 60b520a614..0979d3fc3c 100644 --- a/js/angular/directive/menuToggle.js +++ b/js/angular/directive/menuToggle.js @@ -18,14 +18,14 @@ * * * ``` - * - * - * **Note**: By default, the menu toggle button will only appear on a root + * + * ### Button Hidden On Child Views + * By default, the menu toggle button will only appear on a root * level side-menu page. Navigating in to child views will hide the menu- * toggle button. They can be made visible on child pages by setting the - * enable-menu-with-back-views attribute of the {@link ionic.directive:ionSideMenus} - * directive to true. - * + * enable-menu-with-back-views attribute of the {@link ionic.directive:ionSideMenus} + * directive to true. + * * ```html * * ``` diff --git a/js/angular/directive/navButtons.js b/js/angular/directive/navButtons.js index d59602d05f..10382f3a11 100644 --- a/js/angular/directive/navButtons.js +++ b/js/angular/directive/navButtons.js @@ -25,7 +25,7 @@ * example, a toggle button for a left side menu should be on the left side; in this case, * we'd recommend using `side="left"`, so it's always on the left, no matter the platform. * - * Note that `ion-nav-buttons` must be immediate descendants of the `ion-view` or + * ***Note*** that `ion-nav-buttons` must be immediate descendants of the `ion-view` or * `ion-nav-bar` element (basically, don't wrap it in another div). * * @usage diff --git a/js/angular/directive/sideMenus.js b/js/angular/directive/sideMenus.js index 9517cd2bab..9e92e8cc73 100644 --- a/js/angular/directive/sideMenus.js +++ b/js/angular/directive/sideMenus.js @@ -16,6 +16,11 @@ IonicModule * `ion-side-menu-content`, so that when the element is clicked, the opened side menu will * automatically close. * + * "Burger Icon" toggles can be added to the header with the {@link ionic.directive:menuToggle} + * attribute directive. Clicking the toggle will open and close the side menu like the `menu-close` + * directive. The side menu will automatically hide on child pages, but can be overridden with the + * enable-menu-with-back-views attribute mentioned below. + * * By default, side menus are hidden underneath their side menu content and can be opened by swiping * the content left or right or by toggling a button to show the side menu. Additionally, by adding the * {@link ionic.directive:exposeAsideWhen} attribute directive to an diff --git a/js/angular/directive/view.js b/js/angular/directive/view.js index f4a8004da8..310566c557 100644 --- a/js/angular/directive/view.js +++ b/js/angular/directive/view.js @@ -36,7 +36,7 @@ * * ## View LifeCycle and Events * - * Views can be cached, which means *controllers normally only load once*, which may + * Views can be cached, which means ***controllers normally only load once***, which may * affect your controller logic. To know when a view has entered or left, events * have been added that are emitted from the view's scope. These events also * contain data about the view, such as the title and whether the back button should