Skip to content

Commit

Permalink
v3.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenharris committed Jan 5, 2018
2 parents 14eccc5 + 86966b5 commit e7ef99f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion event-organiser.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/**
* Set the plug-in database version
*/
define( 'EVENT_ORGANISER_VER', '3.6.1' );
define( 'EVENT_ORGANISER_VER', '3.6.2' );

add_action( 'after_setup_theme', '_eventorganiser_set_constants' );
function _eventorganiser_set_constants() {
Expand Down
2 changes: 1 addition & 1 deletion js/frontend.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ jQuery(document).ready(function () {
aspectRatio: calendars[i].aspectratio ? calendars[i].aspectratio : false,
responsive: calendars[i].responsive,
responsiveBreakpoint: calendars[i].responsivebreakpoint,
defaultView: ( $(window).width() < view.calendar.options.responsiveBreakpoint && calendars[i].responsive ) ? _eoResponsiveViewMap[calendars[i].defaultview] : calendars[i].defaultview,
defaultView: ( $(window).width() < calendars[i].responsivebreakpoint && calendars[i].responsive ) ? _eoResponsiveViewMap[calendars[i].defaultview] : calendars[i].defaultview,
previousView: calendars[i].defaultview,
nextDayThreshold: calendars[i].nextdaythreshold,
windowResize: function(view) {
Expand Down
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@ More information on shortcodes is [available here](http://wp-event-organiser.com

## Changelog ##

### 3.6.2 5th January 2018

* bugfix: Fixed reference error in calendar shortcode introduced in 3.6.1
###
### 3.6.1 4th January 2018

* bugfix: Bug where static value is used for calendar breakpoint on initial load
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,10 @@ More information on shortcodes is [available here](http://wp-event-organiser.com

== Changelog ==

= 3.6.2 5th January 2018

* bugfix: Fixed reference error in calendar shortcode introduced in 3.6.1

= 3.6.1 4th January 2018

* bugfix: Bug where static value is used for calendar breakpoint on initial load
Expand Down

0 comments on commit e7ef99f

Please sign in to comment.