WP Google Analytics Events - Version 2.5.4

Version Description

Download this release

Release Info

Developer yuvalo
Plugin Icon 128x128 WP Google Analytics Events
Version 2.5.4
Comparing to
See all releases

Code changes from version 2.5.3 to 2.5.4

Files changed (3) hide show
  1. ga-scroll-event.php +1 -1
  2. js/ga-scroll-events.js +2 -2
  3. readme.txt +5 -2
ga-scroll-event.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Google Analytics Events
4
  Plugin URI: http://wpflow.com
5
  Description: Adds the Google Analytics code to your website and enables you to send events on scroll or click.
6
- Version: 2.5.3
7
  Author: Yuval Oren
8
  Author URI: http://wpflow.com
9
  License: GPLv2
3
  Plugin Name: WP Google Analytics Events
4
  Plugin URI: http://wpflow.com
5
  Description: Adds the Google Analytics code to your website and enables you to send events on scroll or click.
6
+ Version: 2.5.4
7
  Author: Yuval Oren
8
  Author URI: http://wpflow.com
9
  License: GPLv2
js/ga-scroll-events.js CHANGED
@@ -1,5 +1,5 @@
1
  /*!
2
- * WP Googel Analytics Events | v2.5.3
3
  * Copyright (c) 2013 Yuval Oren (@yuvalo)
4
  * License: GPLv2
5
  */
@@ -86,7 +86,7 @@ var scroll_events = (function ($) {
86
  if (hrefTarget.trim() === "_blank") {
87
  var w = window.open('', '_blank');
88
  w.location.href = hasHref;
89
- } else {
90
  setTimeout(function () {
91
  window.location = hasHref;
92
  }, 100);
1
  /*!
2
+ * WP Googel Analytics Events | v2.5.4
3
  * Copyright (c) 2013 Yuval Oren (@yuvalo)
4
  * License: GPLv2
5
  */
86
  if (hrefTarget.trim() === "_blank") {
87
  var w = window.open('', '_blank');
88
  w.location.href = hasHref;
89
+ } else if(hasHref !== window.location.href) {
90
  setTimeout(function () {
91
  window.location = hasHref;
92
  }, 100);
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === WP Google Analytics Events ===
2
  Contributors: yuvalo
3
  Tags: analytics, google, events, ga, google analytics, tracking
4
- Tested up to: 5.0.3
5
- Stable tag: 2.5.3
6
  License: GPLv2
7
  Requires at least: 3.0
8
 
@@ -91,6 +91,9 @@ If you are looking for more in-depth support, we encourage you to check out [WP
91
  2. Google Analytics real time events screenshot-2.png
92
  == Changelog ==
93
 
 
 
 
94
  = Version 2.5.3 =
95
  1. Fixed a regression bug when working with legacy Google Analytics code snippets
96
 
1
  === WP Google Analytics Events ===
2
  Contributors: yuvalo
3
  Tags: analytics, google, events, ga, google analytics, tracking
4
+ Tested up to: 5.2.3
5
+ Stable tag: 2.5.4
6
  License: GPLv2
7
  Requires at least: 3.0
8
 
91
  2. Google Analytics real time events screenshot-2.png
92
  == Changelog ==
93
 
94
+ = Version 2.5.4 =
95
+ 1. Fixed a bug related to bootstrap modals
96
+
97
  = Version 2.5.3 =
98
  1. Fixed a regression bug when working with legacy Google Analytics code snippets
99