PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.5.1
ShareThis Dashboard for Google Analytics v2.5.1
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / js / googleanalytics_createprop.js
googleanalytics / js Last commit date
googleanalytics.js 5 years ago googleanalytics_createprop.js 5 years ago googleanalytics_dashboard.js 9 years ago googleanalytics_page.js 5 years ago
googleanalytics_createprop.js
36 lines
1 (
2 function ( $, wp ) {
3 $( document ).ready( function () {
4 var theData = JSON.stringify( {
5 onboarding_product: 'ga',
6 domain: gasiteURL,
7 email: gaAdminEmail,
8 is_wordpress: true
9 } );
10
11 $.ajax( {
12 url: 'https://platform-api.sharethis.com/v1.0/property',
13 method: 'POST',
14 async: false,
15 contentType: 'application/json; charset=utf-8',
16 data: theData,
17 success: function ( result ) {
18 setGACredentials( result.secret, result._id );
19 }
20 } );
21 } );
22
23 /**
24 * WP Ajax call to set prop id/secret
25 */
26 function setGACredentials(secret, propid) {
27 wp.ajax.post( 'set_ga_credentials', {
28 secret: secret,
29 propid: propid,
30 nonce: gaNonce
31 } ).always( function( results ) {
32 });
33 }
34 }
35 )( window.jQuery, window.wp );
36