Advertisement
Guest User

Untitled

a guest
Jan 21st, 2016
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $scope.selectedIndex = 0;
  2.     $scope.$watch('selectedIndex', function(current, old) {
  3.             switch(current) {
  4.                 case 0:
  5.                     $location.url("/homepage");
  6.                     break;
  7.                 case 1:
  8.                     $location.url("/i-piu-cliccati");
  9.                     break;
  10.                 case 2:
  11.                     $location.url("/i-piu-nuovi");
  12.                     break;
  13.                 case 3:
  14.                     $location.url("/per-categoria");
  15.                     break;
  16.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement