This blog post series has moved here.
You might also be interested in the 2016 version.
This blog post series has moved here.
You might also be interested in the 2016 version.
"use strict"; | |
angular.module("Main").directive("activitycalendar", function () { | |
return { | |
link: function (scope, elm) { | |
var $el = angular.element(elm); | |
function refreshCalendar() { | |
var curCalView = $el.fullCalendar("getView"); | |
var moment = null; |