angular-fullpage.js
Version:
A simple angular directive for fullPage.js
21 lines (13 loc) • 364 B
JavaScript
;(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);
}
}
})();