View Single Post
  #123   Report Post  
Posted to alt.home.repair
rbowman[_2_] rbowman[_2_] is offline
external usenet poster
 
Posts: 593
Default OT - adding without calculator

On 08/31/2015 07:53 AM, Stormin Mormon wrote:
It's not often I can use three level parenthases.


angular.module('socially').controller('PartiesList Ctrl',
['$scope', '$meteor', function ($scope, $meteor) {
$scope.parties = $meteor.collection(Parties);

$scope.remove = function(party){
$scope.parties.remove(party);
};

$scope.removeAll = function(){
$scope.parties.remove();
};
}]);


Just a normal day at work.... For real fun, try Lisp.