sfstanley/citydogshare

View on GitHub
app/assets/javascripts/cal.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document).ready(function() {
    $('#calendar').fullCalendar({
        events: 
    {
        url: '/events.json'
         
    },
    eventClick: function(event){
        window.location.replace("/dogs/1");
    }
    
    });
  
});