Plugin Directory

Changeset 2091525


Ignore:
Timestamp:
05/20/2019 02:09:43 PM (7 years ago)
Author:
indicativejeremy
Message:

Release 1.3

Location:
indicative-analytics/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • indicative-analytics/trunk/assets/js/link-tracker.js

    r2059227 r2091525  
    88            var link = $(this).attr('href');
    99            var linkText = $(this).html().length > 0 ? $(this).html().substr(0, 20) : '';
    10            
     10            var redirect = !$(this).hasClass('indicative-no-redirect');
    1111            Indicative.buildEvent("Link Click",  {
    1212                link_text: linkText,
     
    1414                link_id: $(this).attr('id')
    1515            }, function () {
    16                 if (link != undefined) {
     16                if (link != undefined && redirect) {
    1717                    window.location = link;
    1818                }
  • indicative-analytics/trunk/dragon-fw/helpers.php

    r2059227 r2091525  
    22
    33use Dragon\Config;
     4use Dragon\DragonDecryptionException;
    45use Dragon\Encrypter;
     6use Dragon\Log;
    57use Dragon\Utility;
    68use Dragon\Lang;
     
    2325       
    2426        $key = Config::$encryptionKey;
    25         $encryptor = new Encrypter();
    26         return $encryptor->decrypt($payload, $unserialize);
     27       
     28        try {
     29           
     30            $encryptor = new Encrypter();
     31            return $encryptor->decrypt($payload, $unserialize);
     32           
     33        } catch (DragonDecryptionException $e) {
     34           
     35            Log::info('Invalid decryption token. Fill out the ' .
     36                'missing fields on the settings page, and save ' .
     37                'the page to fix this error.');
     38            return null;
     39           
     40        }
    2741       
    2842    }
  • indicative-analytics/trunk/indicative.php

    r2069469 r2091525  
    1111 * Plugin Name: Indicative Analytics
    1212 * Description: Installs the Indicative code snippet on your website. Start analyzing and optimizing your customer conversion, engagement, and retention with just one click. Install Indicative to your site to begin gaining actionable user insights into your customer journey.
    13  * Version: 1.2
     13 * Version: 1.3
    1414 * Author: Indicative, Inc.
    1515 * Author URI: https://www.indicative.com/?utm_source=partners&utm_medium=integration&utm_campaign=wordpressplugin
  • indicative-analytics/trunk/readme.txt

    r2069469 r2091525  
    22Contributors:
    33Tags: analytics, indicative, customer journey, web analytics, funnel, cohort, kissmetrics, mixpanel, amplitude
    4 Stable tag: 1.2
     4Stable tag: 1.3
    55Requires at least: 3.2
    66Tested up to: 5.1.1
     
    4040== Changelog ==
    4141
     42= 1.3 =
     43* Adding the class 'indicative-no-redirect' to a A link will disable redirecting
     44* Various bug fixes
     45
     46
    4247= 1.2 =
    4348* Added support WP Multisite
Note: See TracChangeset for help on using the changeset viewer.