hellsan631/angular-pagepiling.js

View on GitHub
sample/app/views/main/main.controller.js

Summary

Maintainability
A
0 mins
Test Coverage
;(function() {
  'use strict';

  angular
    .module('sample-app')
    .controller('MainController', MainController);

  MainController.$inject = ['$state'];

  function MainController($state){

    this.mainOptions = {
      sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', 'whitesmoke', '#ccddff'],
            anchors: ['firstPage', 'secondPage', '3rdPage', '4thpage'],
      menu: '#menu',
      navigation: false
    };

  }

})();