in your script have function at bellow:
function track(action, label) {
googleTrackerReadyPromise.then(function () {
var data = {
category: googleTrackingCategory,
action: action,
label: label,
version: appVersionString,
appName: appName
};
console.log('masuk');
console.log('Tracking: ' + action + (label ? (' : ' + label) : ''));
document.frames['googleTracker'].postMessage(data, 'http://easibiznet.com');
});
}
when i call that function in app???
thanks
iwan