Plugin Directory

Changeset 1892217


Ignore:
Timestamp:
06/13/2018 02:09:00 PM (8 years ago)
Author:
id5technology
Message:

Preparing for 1.0.2 release

Location:
id5-pixel-manager/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • id5-pixel-manager/trunk/README.txt

    r1892201 r1892217  
    66Tested up to: 4.9
    77Requires PHP: 5.6
    8 Stable tag: 1.0.1
     8Stable tag: 1.0.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020The Javascript used to execute the ID5 pixel is very straightforward and does nothing beyond writing the ID5 image pixel to the page. Here is an example of the code used:
    2121
    22 ```
     22```html
     23<script>
    2324document.addEventListener('DOMContentLoaded', function() {
    2425    (new Image()).src = '//id5-sync.com/i/113/9.gif';
    2526}, false);
     27</script>
    2628```
    2729
  • id5-pixel-manager/trunk/id5-wp-pixel-manager.php

    r1892201 r1892217  
    1616 * Plugin Name:       ID5 Pixel Manager
    1717 * Description:       Easily add the ID5 cookie syncing pixel on your website with this plugin. For more information, please visit our website.
    18  * Version:           1.0.1
     18 * Version:           1.0.2
    1919 * Author:            ID5 Technology
    2020 * Author URI:        http://id5.io
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define( 'ID5_WP_PIXEL_MANAGER', '1.0.1' );
     37define( 'ID5_WP_PIXEL_MANAGER', '1.0.2' );
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.