EVOLUTION-MANAGER
Edit File: script.js
(function(angular) { 'use strict'; angular.module('switchExample', ['ngAnimate']) .controller('ExampleController', ['$scope', function($scope) { $scope.items = ['settings', 'home', 'other']; $scope.selection = $scope.items[0]; }]); })(window.angular);