Skip to content

Commit

Permalink
changed the url
Browse files Browse the repository at this point in the history
  • Loading branch information
stryju committed Aug 6, 2015
1 parent 285c6d9 commit 46983e9
Showing 1 changed file with 1 addition and 111 deletions.
112 changes: 1 addition & 111 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
import integration from 'analytics.js-integration';
// import assign from 'object-assign';
// import ads from 'ad-params';
// import utm from 'utm-params';
// import { Jar } from 'cookie-jar';

// import globalQ from 'global-queue';
//
// const push = globalQ('_xng');


export default function init( analytics ) {
analytics.addIntegration( XNG );
Expand All @@ -20,14 +11,7 @@ var XNG = integration( 'CrossEngage' )
.global( 'xng' )
.option( 'apiKey', '' )
.assumesPageview()
// .readyOnInitialize()
.tag( '<script src="https://crossengage.io/xng.min.js">' );

// const jarConfig = {
// maxAge : 31536000000, // 1y
// secure : false,
// path : '/'
// };
.tag( '<script src="https://test.crossengage.io/xng.min.js">' );


XNG.prototype.initialize = ( page ) => {
Expand Down Expand Up @@ -79,97 +63,3 @@ XNG.prototype.alias = ( alias ) => {
this.debug( 'xng:alias', alias, json );
window.xng.send( 'alias', json );
};

// XNG.prototype.normalize = ( msg ) => {
// this.debug( 'normalize %o', msg );
//
// const user = this.analytics.user();
// const query = location.search;
// const ctx = msg.context = msg.context || msg.options || {};
//
// delete msg.options;
//
// msg.writeKey = this.options.apiKey;
// ctx.userAgent = navigator.userAgent;
//
// if ( !ctx.library ) {
// ctx.library = {
// name : 'analytics.js',
// version : this.analytics.VERSION
// };
// }
//
// if ( query ) {
// ctx.campaign = utm( query );
// }
//
// this.referrerId( query, ctx );
//
// assign( msg, {
// userId : msg.userId || user.id(),
// anonymousId : user.anonymousId(),
// messageId : uuid(),
// sentAt : new Date()
// });
//
// this.debug( 'normalized %o', msg );
//
// return msg;
// };
//
// XNG.prototype.cookie = function ( name, val ) {
// if ( arguments.length === 1 ) {
// return jar.get( name );
// }
//
// var href = window.location.href;
// var domain = '.' + top( href );
//
// if ( '.' === domain ) {
// domain = '';
// }
//
// var config = assign( { domain }, jarConfig );
//
// this.debug( 'store domain %s -> %s', href, domain );
// this.debug( 'store %s, %s, %o', name, val, config );
//
// jar.set( name, val, config );
//
// if ( jar.get( name ) ) {
// return;
// }
//
// delete config.domain;
//
// this.debug( 'fallback store %s, %s, %o', name, val, config );
//
// jar.set( name, val, config );
// };
//
// XNG.prototype.referrerId = function ( query, ctx ) {
// let stored = this.cookie( 'xng:context.referrer' );
// let ad;
//
// if ( stored ) {
// stored = JSON.parse(stored);
// }
//
// ad = query ?
// ads( query ) :
// stored;
//
// if ( !ad ) {
// return;
// }
//
// ctx.referrer = assign( ctx.referrer || {}, ad );
//
// this.cookie( 'xng:context.referrer', JSON.stringify( ad ) );
// };
//
// XNG.prototype.send = ( uri, msg, fn ) => {
// this.debug( 'xng:send.init %s %o', uri, msg );
//
// window.xng.send( uri, this.normalize( msg ), fn );
// };

0 comments on commit 46983e9

Please sign in to comment.