TeaWithStrangers/tws-on-rails

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

Summary

Maintainability
A
2 hrs
Test Coverage
/**
 * Bind the tea time month navigation links (e.g. "see next month tea times")
 */
var bindTeaTimeMonthLink = function() {
  $('#tea-time-month-next').on('click', function(e) {
    e.preventDefault();
    $(this).closest('.month-display-container').removeClass('show-left').addClass('show-right');
  });

  $('#tea-time-month-prev').on('click', function(e) {
    e.preventDefault();
    $(this).closest('.month-display-container').removeClass('show-right').addClass('show-left');
  });
};

$(document).on('turbolinks:load', bindTeaTimeMonthLink)