This commit is contained in:
George Michael Brower 2011-01-23 15:37:28 -07:00
commit b716dc8225

4
gui.js
View File

@ -77,7 +77,9 @@ var GUI = new function() {
}; };
var error = function(str) { var error = function(str) {
console.error("[GUI ERROR] " + str); if (typeof console.log == 'function') {
console.error("[GUI ERROR] " + str);
}
} }
}; };