Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. voterino.controller('HomeController', ['$scope',
  2. function ($scope) {
  3.     $scope.title = "";
  4.     $scope.options = ["o", "x"];
  5.     $scope.test = function(ind) {
  6.  
  7.         if ((ind+1) == $scope.options.length)
  8.             $scope.options.push("s");
  9.  
  10.         //console.log(ind);
  11.     }
  12. }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement