Changeset 2091525
- Timestamp:
- 05/20/2019 02:09:43 PM (7 years ago)
- Location:
- indicative-analytics/trunk
- Files:
-
- 4 edited
-
assets/js/link-tracker.js (modified) (2 diffs)
-
dragon-fw/helpers.php (modified) (2 diffs)
-
indicative.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indicative-analytics/trunk/assets/js/link-tracker.js
r2059227 r2091525 8 8 var link = $(this).attr('href'); 9 9 var linkText = $(this).html().length > 0 ? $(this).html().substr(0, 20) : ''; 10 10 var redirect = !$(this).hasClass('indicative-no-redirect'); 11 11 Indicative.buildEvent("Link Click", { 12 12 link_text: linkText, … … 14 14 link_id: $(this).attr('id') 15 15 }, function () { 16 if (link != undefined ) {16 if (link != undefined && redirect) { 17 17 window.location = link; 18 18 } -
indicative-analytics/trunk/dragon-fw/helpers.php
r2059227 r2091525 2 2 3 3 use Dragon\Config; 4 use Dragon\DragonDecryptionException; 4 5 use Dragon\Encrypter; 6 use Dragon\Log; 5 7 use Dragon\Utility; 6 8 use Dragon\Lang; … … 23 25 24 26 $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 } 27 41 28 42 } -
indicative-analytics/trunk/indicative.php
r2069469 r2091525 11 11 * Plugin Name: Indicative Analytics 12 12 * 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. 213 * Version: 1.3 14 14 * Author: Indicative, Inc. 15 15 * Author URI: https://www.indicative.com/?utm_source=partners&utm_medium=integration&utm_campaign=wordpressplugin -
indicative-analytics/trunk/readme.txt
r2069469 r2091525 2 2 Contributors: 3 3 Tags: analytics, indicative, customer journey, web analytics, funnel, cohort, kissmetrics, mixpanel, amplitude 4 Stable tag: 1. 24 Stable tag: 1.3 5 5 Requires at least: 3.2 6 6 Tested up to: 5.1.1 … … 40 40 == Changelog == 41 41 42 = 1.3 = 43 * Adding the class 'indicative-no-redirect' to a A link will disable redirecting 44 * Various bug fixes 45 46 42 47 = 1.2 = 43 48 * Added support WP Multisite
Note: See TracChangeset
for help on using the changeset viewer.