docs(): fix various documentation issues

This commit is contained in:
Ken Sodemann
2017-09-18 12:08:34 -05:00
parent f953b12416
commit 198764cb1f
4 changed files with 5 additions and 3 deletions

View File

@ -16,7 +16,7 @@ export class PageOne {
filterItems(ev: any) {
this.setItems();
let val = ev.value;
let val = ev.target.value;
if (val && val.trim() !== '') {
this.items = this.items.filter(function(item) {

View File

@ -47,6 +47,8 @@ import { LoadingOptions } from './loading-options';
*
* @usage
* ```ts
* import { LoadingController } from 'ionic-angular';
*
* constructor(public loadingCtrl: LoadingController) {
*
* }

View File

@ -8,7 +8,7 @@ import { ViewController } from '../../navigation/view-controller';
* @name MenuToggle
* @description
* The `menuToggle` directive can be placed on any button to toggle a menu open or closed.
* If it is added to the [NavBar](../../navbar/NavBar) of a page, the button will only appear
* If it is added to the [NavBar](../../toolbar/Navbar) of a page, the button will only appear
* when the page it's in is currently a root page. See the [Menu Navigation Bar Behavior](../Menu#navigation-bar-behavior)
* docs for more information.
*

View File

@ -88,7 +88,7 @@ import { VirtualHeader } from './virtual-header';
* ### Approximate Widths and Heights
*
* If the height of items in the virtual scroll are not close to the
* default size of 40px, it is extremely important to provide an value for
* default size of 40px, it is extremely important to provide a value for
* approxItemHeight height. An exact pixel-perfect size is not necessary,
* but without an estimate the virtual scroll will not render correctly.
*