UNPKG

angular-fullpage.js

Version:
21 lines (13 loc) 364 B
;(function() { 'use strict'; angular .module('sample-app') .controller('AppController', AppController); AppController.$inject = ['$rootScope', '$state']; function AppController($rootScope, $state){ $rootScope.changePage = changePage; function changePage(){ $state.go($rootScope.chosenPage); } } })();