remove print statements
This commit is contained in:
parent
d9daf10889
commit
bb686389ce
2 changed files with 1 additions and 3 deletions
|
@ -30,13 +30,11 @@ Ox.ExamplePanel = function(options, self) {
|
||||||
.options(options || {})
|
.options(options || {})
|
||||||
.update({
|
.update({
|
||||||
mode: function() {
|
mode: function() {
|
||||||
Ox.print('mode handler', self.options.selected)
|
|
||||||
if (self.options.selected) {
|
if (self.options.selected) {
|
||||||
self.$page.options({selected: self.options.mode});
|
self.$page.options({selected: self.options.mode});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
selected: function() {
|
selected: function() {
|
||||||
Ox.print('selected handler');
|
|
||||||
self.options.mode = 'source';
|
self.options.mode = 'source';
|
||||||
selectItem(self.options.selected);
|
selectItem(self.options.selected);
|
||||||
}
|
}
|
||||||
|
|
|
@ -809,7 +809,7 @@ Ox.Filter = function(options, self) {
|
||||||
/*
|
/*
|
||||||
// FIXME: doesn't work for nested conditions
|
// FIXME: doesn't work for nested conditions
|
||||||
query.conditions.forEach(function(condition) {
|
query.conditions.forEach(function(condition) {
|
||||||
Ox.print('CO', condition.operator)
|
// Ox.print('CO', condition.operator)
|
||||||
condition.operator = condition.operator.replace(':', '');
|
condition.operator = condition.operator.replace(':', '');
|
||||||
});
|
});
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue