AngularJS Service Dependencies

by Edward Tanguay

HTML

<div id='calendar'></div>

JavaScript

$(function() {
	$('#calendar').html('yes');    
    
        $('#calendar').fullCalendar({
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,basicWeek,basicDay'
            },
            defaultDate: '2015-08-26'
        });    
});