Simple Google Analytics - Version 2.0.4

Version Description

Download this release

Release Info

Developer JeromeMeyer62
Plugin Icon 128x128 Simple Google Analytics
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

class/Actions.class.php CHANGED
@@ -46,7 +46,7 @@
46
 
47
  // Pour chaque fichier JS
48
  foreach ($this->javascript as $value) {
49
- wp_enqueue_script(self::_NAMESPACE, plugins_url('', dirname(__FILE__)) . '/js/' . $value) ;
50
  }
51
  }
52
 
46
 
47
  // Pour chaque fichier JS
48
  foreach ($this->javascript as $value) {
49
+ wp_enqueue_script(self::_NAMESPACE, plugins_url('', dirname(__FILE__)) . '/js/' . $value, array('jquery')) ;
50
  }
51
  }
52
 
readme.txt CHANGED
@@ -4,9 +4,9 @@ Contributors: JeromeMeyer62
4
  Tags: google analytics, wordpress statistics, tracking
5
  Plugin link: http://www.arobase62.fr/2011/03/23/simple-google-analytics/
6
  Requires at least: 2.6
7
- Tested up to: 3.2.1
8
- Version: 2.0.3
9
- Stable tag: 2.0.3
10
 
11
  == Description ==
12
  Simple Google Analytics allows you to easilly add your Google Analytics code on all your pages.
@@ -49,6 +49,8 @@ It should work from 2.6 upwards.. Has been tested on all current versions and is
49
  1. Screenshot Simple Google Analytics Admin Page
50
 
51
  == Changelog ==
 
 
52
  = version 2.0.3 =
53
  * Corrected a bug that made all settings link on extension page going to Simple Google Analytics settings page.
54
  = version 2.0.2 =
4
  Tags: google analytics, wordpress statistics, tracking
5
  Plugin link: http://www.arobase62.fr/2011/03/23/simple-google-analytics/
6
  Requires at least: 2.6
7
+ Tested up to: 3.3
8
+ Version: 2.0.4
9
+ Stable tag: 2.0.4
10
 
11
  == Description ==
12
  Simple Google Analytics allows you to easilly add your Google Analytics code on all your pages.
49
  1. Screenshot Simple Google Analytics Admin Page
50
 
51
  == Changelog ==
52
+ = version 2.0.4 =
53
+ * Corrected a bug where the JS file was loading before jQuery. Thanks to MrZebra for finding that.
54
  = version 2.0.3 =
55
  * Corrected a bug that made all settings link on extension page going to Simple Google Analytics settings page.
56
  = version 2.0.2 =
simple_google_analytics.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Simple Google Analytics
4
  Plugin URI: http://www.arobase62.fr/2011/03/23/simple-google-analytics/
5
  Description: A simple Plugin to add Analytics code on your pages. You simply enter your ID, you choose if you are on a sub-domain and add your domain name.
6
- Version: 2.0.3
7
  Author: Jerome Meyer
8
  Author URI: http://www.arobase62.fr
9
  */
3
  Plugin Name: Simple Google Analytics
4
  Plugin URI: http://www.arobase62.fr/2011/03/23/simple-google-analytics/
5
  Description: A simple Plugin to add Analytics code on your pages. You simply enter your ID, you choose if you are on a sub-domain and add your domain name.
6
+ Version: 2.0.4
7
  Author: Jerome Meyer
8
  Author URI: http://www.arobase62.fr
9
  */