Ionic-Material
Ionic-Material copied to clipboard
fabContent is not updated
when this line is commented : // $ionicConfigProvider.views.maxCache(0);
and add {cache:true} in the state e.g.
.state('app.create-event', {
url: '/create-event',
cache: true,
views: {
'menuContent': {
templateUrl: 'templates/create-event.html',
controller: 'CreateEventCtrl'
},
'fabContent': {
template: ''
}
}
})
the fabContent template is not cleared, but it still showing the previous page fabContent.
+1
+1
+1