mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
docs(pull-to-refresh): fix API docs for the starting event
references #5207
This commit is contained in:
@ -18,7 +18,7 @@ import {raf, ready, CSS} from '../../util/dom';
|
|||||||
* @usage
|
* @usage
|
||||||
* ```html
|
* ```html
|
||||||
* <ion-content>
|
* <ion-content>
|
||||||
* <ion-refresher (starting)="doStarting()"
|
* <ion-refresher (starting)="doStarting($event)"
|
||||||
* (refresh)="doRefresh($event)"
|
* (refresh)="doRefresh($event)"
|
||||||
* (pulling)="doPulling($event)">
|
* (pulling)="doPulling($event)">
|
||||||
* </ion-refresher>
|
* </ion-refresher>
|
||||||
@ -329,7 +329,6 @@ export class Refresher {
|
|||||||
// startCallback
|
// startCallback
|
||||||
this.isRefreshing = true;
|
this.isRefreshing = true;
|
||||||
this.refresh.emit(this);
|
this.refresh.emit(this);
|
||||||
//$scope.$onRefresh();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user