use Ox.print()

This commit is contained in:
Rolux 2010-02-05 14:43:54 +05:30
parent a6ef66674b
commit c11108bded

View File

@ -306,7 +306,7 @@ requires
} }
stack.push(id); stack.push(id);
Ox.Event.bindKeyboard(id); Ox.Event.bindKeyboard(id);
console.log("focus", stack); Ox.print("focus", stack);
}, },
focused: function() { focused: function() {
return stack[stack.length - 1]; return stack[stack.length - 1];
@ -319,7 +319,7 @@ requires
/* /*
Ox.Event.bindKeyboard(stack[stack.length - 1]); Ox.Event.bindKeyboard(stack[stack.length - 1]);
*/ */
console.log("blur", stack); Ox.print("blur", stack);
} }
}; };
}(); }();