remove print statements

This commit is contained in:
rlx 2011-10-01 13:07:33 +00:00
parent b3e7945a96
commit f9143bd62f
2 changed files with 0 additions and 2 deletions

View file

@ -1666,7 +1666,6 @@ Ox.List = function(options, self) {
});
}
self.options.items[pos][key] = value;
if (pos == 0) Ox.print(self.options.items[pos])
data[key] = value;
$item.options({data: data});
return that;

View file

@ -70,7 +70,6 @@ Ox.TreeList = function(options, self) {
function constructItem(data) {
var $item = $('<div>'), //.css({width: self.options.width + 'px'}),
padding = (data.level + !data.items) * 16 - 8;
if (data.title.indexOf('COUNTRIES') > -1) Ox.print('DATA...', data);
if (data.level || !data.items) {
$('<div>')
.addClass('OxCell OxTarget')