Advertisement
Guest User

Public VS Private example - now privatized

a guest
May 26th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. scControllers.controller('DisplayController', [
  2.   '$scope',
  3.   function($scope) {
  4.     var vm = this;
  5.     var active = 'now';
  6.  
  7.     vm.setNav = function(nav){
  8.       active = nav;
  9.     };
  10.  
  11.     vm.getActive = function(){
  12.       return active;
  13.     };
  14.   }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement