Skip to content

Instantly share code, notes, and snippets.

View nicocasel's full-sized avatar

Nico Casel nicocasel

  • Belgium
View GitHub Profile
@nicocasel
nicocasel / DayController.js
Created August 8, 2015 10:21
AngularJS Calendar
app.controller('DayController', ['$scope', 'events', function($scope, events) {
events.success(function(data){
$scope.day = data; });
}]);