I'm trying to call a function using the on-refresh attribute on a <list> tag like this
<list on-refresh="refreshList()">
but the function doesn't get fired.
The relevant part of my controller is
$scope.refreshList = function(){
alert('refresh');
$scope.$broadcast('scroll.refreshComplete');
};