Console fix for sad boy IE
/**
* For browsers like IE8 and below so we do not reek havok
*/
if (!('console' in window)) {
function nothing() {}
window.console = {
debug: nothing,
dir: nothing,
error: nothing,
group: nothing,
groupCollapsed: nothing,
groupEnd: nothing,
info: nothing,
log: nothing,
time: nothing,
timeEnd: nothing,
trace: nothing,
warn: nothing
};
}