Skip to content

Commit

Permalink
docs(pull-to-refresh): fix API docs for the starting event
Browse files Browse the repository at this point in the history
references #5207
  • Loading branch information
brandyscarney committed Feb 17, 2016
1 parent 8ad9327 commit 1063baa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ionic/components/scroll/pull-to-refresh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {raf, ready, CSS} from '../../util/dom';
* @usage
* ```html
* <ion-content>
* <ion-refresher (starting)="doStarting()"
* <ion-refresher (starting)="doStarting($event)"
* (refresh)="doRefresh($event)"
* (pulling)="doPulling($event)">
* </ion-refresher>
Expand Down Expand Up @@ -329,7 +329,6 @@ export class Refresher {
// startCallback
this.isRefreshing = true;
this.refresh.emit(this);
//$scope.$onRefresh();
}

/**
Expand Down

0 comments on commit 1063baa

Please sign in to comment.