Thanks you very much for the idea @ibrahima !
With ui-router you can set the window title like this (kinda hacky!):
$rootScope.$on('$stateChangeSuccess', function() { var titleExp = $interpolate($state.current.data.pageTitle); $document[0].title = titleExp($state.$current.locals.resolve.$$values); });
And:
... data: { pageTitle: "{{resolvedItem.name}} - My Apps" } ...
Thanks you very much for the idea @ibrahima !
With ui-router you can set the window title like this (kinda hacky!):
And: