summaryrefslogtreecommitdiff
path: root/app/views/workouts/calendar.html.erb
blob: b06a1046abfed8555d226445f77f3b011f86fa1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="container">
  <div class="columns">
    <div class="column is-12">
      <div id="calendar"></div>
    </div>
  </div>
</div>

<% content_for :javascript do %>
  $(function(){
    $('#calendar').fullCalendar({
      events: '<%= calendar_workouts_path(format: :json) %>'
    });
  });
<% end %>