docs: fix doc tags

This commit is contained in:
Drew Rygh
2015-09-08 15:00:14 -05:00
parent e2c01f4b12
commit b95ddaafa2
13 changed files with 31 additions and 35 deletions

View File

@@ -7,20 +7,18 @@ import {raf, ready, CSS} from 'ionic/util/dom';
/**
* @name ionRefresher
* @classdesc
* @description
* Allows you to add pull-to-refresh to an ionContent component.
*
* Place it as the first child of your ionContent or ionScroll element.
*
* When refreshing is complete, call `refresher.complete()` from your controller.
*
* @example
* ```html
* <ion-refresher (starting)="doStarting()" (refresh)="doRefresh($event, refresher)" (pulling)="doPulling($event, amt)">
* ```
*
* @example
* @usage
* ```ts
* <ion-refresher (starting)="doStarting()" (refresh)="doRefresh($event, refresher)" (pulling)="doPulling($event, amt)">
*
*
* doRefresh(refresher) {
* console.log('Refreshing!', refresher);
*