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

2
gui.js
View File

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