Ion-nav-buttons ng click not working

Hi all,
I added a ion-nav-button exactly as documented (direct descendant of the ion-view) and added an ng-click event that isn’t firing.

Any idea why?

I attached a plunkr of the issue.

Thanks! Uri

Angular is looking for a function “alert” on your scope.

$scope.alert = function(message)
{
  alert(message);
}