forked from 0x2620/oxjs
use Ox.print instead of console.log
This commit is contained in:
parent
4cc7bad63c
commit
9eac279745
7 changed files with 16 additions and 16 deletions
|
|
@ -204,7 +204,7 @@ Ox = {
|
|||
})();
|
||||
self.onChange = function(option, value) {
|
||||
if (option == "foo") {
|
||||
console.log("foo set to", value);
|
||||
Ox.print("foo set to", value);
|
||||
}
|
||||
}
|
||||
that.getTime = function() {
|
||||
|
|
@ -225,8 +225,8 @@ Ox = {
|
|||
self.time = 0;
|
||||
})();
|
||||
that.bar = function() {
|
||||
console.log("Bar.bar()");
|
||||
Ox.print("Bar.bar()");
|
||||
}
|
||||
return that;
|
||||
}
|
||||
})();
|
||||
})();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue