- 🇦🇺Australia VladimirAus Brisbane, Australia
Version 7 is no loner supported.
Marking as outdated.
JavaScript's console.log creates an error in IE if Developer Tools is NOT open.
http://kevinquillen.com/ie/2014/06/11/ie-console-woes/
From site above:
"
How can I tell?
A simple test to see if console is the issue in your sites Javascript is to add this just before your body tag, or, after all your sites Javascript files have loaded:
if(!window.console) {
var console = {
log : function(){},
warn : function(){},
error : function(){},
time : function(){},
timeEnd : function(){}
}
}
Reload that in IE. If your script(s) start magically working - your issue is definitely console methods being used. Don’t leave this in though, it certainly is not a fix by any means. It simply defines an object if it is not yet defined.
The simple fix is commenting it out when you’re through using it. Often times, we get so gung-ho about debugging our code that sometimes you cannot see the forest for the trees. This is one of those instances. The minute you try to debug this, you won’t get very far, as the very tool you likely use to debug scripts is the thing causing the issue!"
An alternative solution is to prepend the console calls with a check for console like:
window.console&&window.console.log(selectedButton);
source: http://stackoverflow.com/questions/3326650/console-is-undefined-error-for-internet-explorer/16916941#16916941
Closed: outdated
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Version 7 is no loner supported.
Marking as outdated.