Forum Discussion
FrankSiegel
4 years agoCommunity Member
Storyline 3.18.28642.0 publishing breaks tincan tracking -- forbidden
I was told to get this new version because of these threads: https://community.articulate.com/discussions/articulate-storyline/firefox-is-it-compatible-or-not
SL360 content running in latest Firef...
Jürgen_Schoene_
4 years agoCommunity Member
add some debug code "console.log(...)"
function injecttracking() {
console.log( "injecttracking" );
var head = this.contentDocument.getElementsByTagName("head")[0];
var scr = this.contentDocument.createElement('script');
scr.type = 'text/javascript';
scr.src = '/js/track.js';
head.appendChild(scr);
console.log( "head", head );
console.log( "scr", scr );
}
add in the track.js before the first line and after the last line also a console.log("...") command
first try it with chrome, if it's ok then try it with firefox
make screenshots from the browser console with all log messages