fixed small typos

This commit is contained in:
jeena 2012-11-18 03:01:09 +01:00
parent b6c94f23de
commit e211ed0c54
3 changed files with 13 additions and 13 deletions

View file

@ -83,6 +83,13 @@ var console = {
} else {
__console.notice(s);
}
},
debug: function(s) {
if (OS_TYPE == "mac") {
alert("DEBUG: " + s);
} else {
__console.debug(s);
}
}
};
@ -99,14 +106,14 @@ function debug(string) {
string = JSON.stringify(string);
}
alert("DEBUG: " + string);
console.debug(string);
}
function go() { // wait untill everything is loaded
setTimeout(function() {
if (typeof HostAppGo != typeof __not_defined__) {
HostAppGo();
} else {