After upgrading to the latest nightly build, transitioning from one page to another freezes the app. I’m still trying to find the culprit in my code, but I have a feeling it has something to do with the routing as it breaks on the transition that is a from a “master” screen to a “child” screen (from home.items to home.item). The transition from login to home.items works fine.
.state('login', {
url: '/login',
templateUrl: 'views/login.html',
controller: 'LoginCtrl',
data: {
authenticate: false
}
})
.state('home', {
url: "",
abstract: true,
controller: 'HomeCtrl',
templateUrl: "views/home.html"
})
.state('home.items', {
url: '/items',
views: {
'homeContent' : {
templateUrl: "views/items.html",
controller : "ItemsCtrl",
data: {
authenticate: true
}
}
}
.state('home.item', {
url: '/items/:id',
views: {
'homeContent' :{
templateUrl: "views/item.html",
controller : "ItemCtrl",
data: {
authenticate: true
}
}
}
})
})
Any idea on whether this could be the reason that the nightly build freezes my app when transitioning?
Thanks.