remove print statements
This commit is contained in:
parent
b3e7945a96
commit
f9143bd62f
2 changed files with 0 additions and 2 deletions
|
@ -1666,7 +1666,6 @@ Ox.List = function(options, self) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
self.options.items[pos][key] = value;
|
self.options.items[pos][key] = value;
|
||||||
if (pos == 0) Ox.print(self.options.items[pos])
|
|
||||||
data[key] = value;
|
data[key] = value;
|
||||||
$item.options({data: data});
|
$item.options({data: data});
|
||||||
return that;
|
return that;
|
||||||
|
|
|
@ -70,7 +70,6 @@ Ox.TreeList = function(options, self) {
|
||||||
function constructItem(data) {
|
function constructItem(data) {
|
||||||
var $item = $('<div>'), //.css({width: self.options.width + 'px'}),
|
var $item = $('<div>'), //.css({width: self.options.width + 'px'}),
|
||||||
padding = (data.level + !data.items) * 16 - 8;
|
padding = (data.level + !data.items) * 16 - 8;
|
||||||
if (data.title.indexOf('COUNTRIES') > -1) Ox.print('DATA...', data);
|
|
||||||
if (data.level || !data.items) {
|
if (data.level || !data.items) {
|
||||||
$('<div>')
|
$('<div>')
|
||||||
.addClass('OxCell OxTarget')
|
.addClass('OxCell OxTarget')
|
||||||
|
|
Loading…
Reference in a new issue