Simple Calendar – Google Calendar Plugin - Version 2.1.6.1

Version Description

  • More tooltip (qTip2) effects & styling.
Download this release

Release Info

Developer pderksen
Plugin Icon 128x128 Simple Calendar – Google Calendar Plugin
Version 2.1.6.1
Comparing to
See all releases

Code changes from version 2.1.6 to 2.1.6.1

README.txt CHANGED
@@ -89,6 +89,10 @@ There are three ways to install this plugin.
89
 
90
  == Changelog ==
91
 
 
 
 
 
92
  = 2.1.6 =
93
 
94
  * Fixed bug with tooltip (qTip2) in some cases by now including it's imagesLoaded script.
89
 
90
  == Changelog ==
91
 
92
+ = 2.1.6.1 =
93
+
94
+ * More tooltip (qTip2) effects & styling.
95
+
96
  = 2.1.6 =
97
 
98
  * Fixed bug with tooltip (qTip2) in some cases by now including it's imagesLoaded script.
class-google-calendar-events.php CHANGED
@@ -18,7 +18,7 @@ class Google_Calendar_Events {
18
  *
19
  * @var string
20
  */
21
- protected $version = '2.1.6';
22
 
23
  /**
24
  * Unique identifier for the plugin.
18
  *
19
  * @var string
20
  */
21
+ protected $version = '2.1.6.1';
22
 
23
  /**
24
  * Unique identifier for the plugin.
css/gce-style.css CHANGED
@@ -155,8 +155,6 @@
155
 
156
  .gce-event-info{ /* Tooltip container */
157
  background-color:#FFFFFF;
158
- border:1px solid #333333;
159
- max-width:300px;
160
  }
161
 
162
  .gce-event-info .gce-tooltip-title{ /* 'Events on...' text */
155
 
156
  .gce-event-info{ /* Tooltip container */
157
  background-color:#FFFFFF;
 
 
158
  }
159
 
160
  .gce-event-info .gce-tooltip-title{ /* 'Events on...' text */
google-calendar-events.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Google Calendar Events
13
  * Plugin URI: https://github.com/pderksen/WP-Google-Calendar-Events
14
  * Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
15
- * Version: 2.1.6
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
12
  * Plugin Name: Google Calendar Events
13
  * Plugin URI: https://github.com/pderksen/WP-Google-Calendar-Events
14
  * Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
15
+ * Version: 2.1.6.1
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
js/gce-script.js CHANGED
@@ -104,10 +104,17 @@
104
  content: $(this).children('.gce-event-info'),
105
  position: {
106
  my: 'bottom left',
107
- at: 'top right'
 
 
 
 
108
  },
109
  show: {
110
- solo: true
 
 
 
111
  },
112
  hide: {
113
  fixed: true
104
  content: $(this).children('.gce-event-info'),
105
  position: {
106
  my: 'bottom left',
107
+ at: 'center',
108
+ viewport: true,
109
+ adjust: {
110
+ method: 'shift'
111
+ }
112
  },
113
  show: {
114
+ solo: true,
115
+ effect: function(offset) {
116
+ $(this).fadeIn(50);
117
+ }
118
  },
119
  hide: {
120
  fixed: true