removed all alerts
This commit is contained in:
parent
b138887371
commit
b6c94f23de
5 changed files with 6 additions and 75 deletions
|
@ -70,13 +70,13 @@ var console = {
|
|||
__console.error(s);
|
||||
}
|
||||
},
|
||||
warning: function (s) {
|
||||
warn: function (s) {
|
||||
if (OS_TYPE == "mac") {
|
||||
alert("WARNING: " + s);
|
||||
} else {
|
||||
__console.warning(s);
|
||||
}
|
||||
}
|
||||
},
|
||||
notice: function(s) {
|
||||
if (OS_TYPE == "mac") {
|
||||
alert("NOTICE: " + s);
|
||||
|
|
Reference in a new issue