Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $rootScope.goToPage = function (here) {
  2. if (here.type && here.type.id == 'somecontenttype') {
  3. //Launch.set(here.title, here.mainAction.href, $filter('link')(here.links, 'page'),'');
  4. $location.path(here.mainAction.href);
  5. } else if (($filter('link')(here.links, 'page')).length > 0) {
  6. $location.path($filter('link')(here.links, 'page'));
  7. }
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement