Ion-refresher is not triggering the event

Hello, I have the following issue: I have tried in local, in the ionic previewer and then on one device, but the refresh event is not triggered.
I am using Ionic 2.0.0-beta.32. This is the code:

<ion-content class="search">
    <ion-refresher  (pulling)="reloadData($event)">
        <ion-refresher-content
            pullingIcon="arrow-down"
      pullingText="Pull to Refresh"
      refreshingSpinner="circles"
      refreshingText="Refreshing ...">              
        </ion-refresher-content>
    </ion-refresher>
....
</ion-content>

Can anybody help please?

since beta 8 the event names have changed.
Refresher
refresh -> ionRefresh
pulling -> ionPull
start -> ionStart

See here.
https://github.com/driftyco/ionic/blob/2.0/CHANGELOG.md#200-beta8-2016-06-06

It’s working now. Thanks.

No worries :slight_smile: