* ga removed

This commit is contained in:
Dávid Danyi 2016-08-30 13:41:17 +02:00
parent 2fbedeff97
commit 72f7b16f6f

View File

@ -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();
}));