Closed allanhortle closed 9 years ago
I haven't looked at it in a while, but the logging code predates chrome's existence, so it could probably use some maintenance.
On Sunday, March 16, 2014, Allan Hortle notifications@github.com wrote:
If you are using chrome if(window.console && window.console.firebug){returns false and so will never log anything. Is this intentional?
Reply to this email directly or view it on GitHubhttps://github.com/pipwerks/scorm-api-wrapper/issues/7 .
window.console.firebug hasn't been valid for a while - you'll want to use if(window.console && window.console.log) instead
Updated
If you are using chrome
if(window.console && window.console.firebug){
returns false and so will never log anything. Is this intentional?