1
0
Fork 0
forked from 0x2620/oxjs

use Ox.print instead of console.log

This commit is contained in:
j 2010-02-06 19:29:16 +05:30
commit 9eac279745
7 changed files with 16 additions and 16 deletions

View file

@ -200,7 +200,7 @@
.bindEvent("change." + range.id, update)
.appendTo($toolbars[4]);
function update() {
//console.log("update", range.options("value"))
//Ox.print("update", range.options("value"))
/*
// fixme: make this work
input.options({
@ -209,7 +209,7 @@
*/
input.val(range.options("value").toFixed(1))
}
//console.log("binding to OxRange" + range.id + "Change")
//Ox.print("binding to OxRange" + range.id + "Change")
Ox.Range({
animate: true,
arrows: true,
@ -272,7 +272,7 @@
}
}
function clickButton(val) {
// console.log(val);
// Ox.print(val);
}
});
</script>