diff --git a/bookmarklet.js b/bookmarklet.js index 77b3b00..eb36dc9 100644 --- a/bookmarklet.js +++ b/bookmarklet.js @@ -150,7 +150,7 @@ error = error2object(error); var error = JSON.stringify(error,2,2); console.log("ERROR " + error); - ga('send', 'exception', { 'exDescription': error, 'exFatal': true }); + // ga('send', 'exception', { 'exDescription': error, 'exFatal': true }); alert("Sorry something went wrong\n\nPlease create an issue with following details at\n" + global.issueTrackingUrl + "\n\n" + error); } @@ -183,7 +183,7 @@ } function print() { - ga('send', 'event', 'button', 'click', 'print', $(".card", global.printFrame.contentWindow.document).length); + // ga('send', 'event', 'button', 'click', 'print', $(".card", global.printFrame.contentWindow.document).length); global.printFrame.contentWindow.print(); } @@ -243,7 +243,7 @@ promises.push(global.appFunctions.getCardData(issueKey).then(function(cardData) { // console.log("cardData: " + JSON.stringify(cardData,2,2)); - ga('send', 'event', 'card', 'generate', cardData.type); + // ga('send', 'event', 'card', 'generate', cardData.type); fillCard(card, cardData); redrawCards(); }));