remove print statements

This commit is contained in:
rolux 2012-07-09 17:38:30 +02:00
parent d9daf10889
commit bb686389ce
2 changed files with 1 additions and 3 deletions

View file

@ -30,13 +30,11 @@ Ox.ExamplePanel = function(options, self) {
.options(options || {})
.update({
mode: function() {
Ox.print('mode handler', self.options.selected)
if (self.options.selected) {
self.$page.options({selected: self.options.mode});
}
},
selected: function() {
Ox.print('selected handler');
self.options.mode = 'source';
selectItem(self.options.selected);
}

View file

@ -809,7 +809,7 @@ Ox.Filter = function(options, self) {
/*
// FIXME: doesn't work for nested conditions
query.conditions.forEach(function(condition) {
Ox.print('CO', condition.operator)
// Ox.print('CO', condition.operator)
condition.operator = condition.operator.replace(':', '');
});
*/