Ion-nav-title and $scope

Hey,

I’m trying to make one global nav-bar for my app.
Only problem I have is that I can’t get ion-nav-title to work with curly braces.

Here is my index.html:
>

                <ion-nav-title>
                    {{title}}
                </ion-nav-title>
</ion-view></ion-nav-view>

And this is one of my controllers, where I try to apply the title:
$scope.title = “Favorites”;

The title works without the braces. It isn’t getting $scope for some reason.

Thanks!