[imp] removed useless logging

bzr revid: nicolas.vanhoren@openerp.com-20111026100538-momcgi4s3lxy560l
This commit is contained in:
niv-openerp 2011-10-26 12:05:38 +02:00
parent 5f43160a61
commit f0714ccd72
1 changed files with 0 additions and 3 deletions

View File

@ -2226,7 +2226,6 @@ openerp.web.form.FieldMany2Many = openerp.web.form.Field.extend({
this.dataset.set_ids(value);
var self = this;
$.when(this.is_started).then(function() {
console.log("lalala");
self.list_view.reload_content();
});
this.is_setted.resolve();
@ -2238,7 +2237,6 @@ openerp.web.form.FieldMany2Many = openerp.web.form.Field.extend({
this.invalid = false;
},
load_view: function() {
console.info("yop");
var self = this;
this.list_view = new openerp.web.form.Many2ManyListView(this, this.dataset, false, {
'addable': self.readonly ? null : 'Add',
@ -2265,7 +2263,6 @@ openerp.web.form.FieldMany2Many = openerp.web.form.Field.extend({
$.when(this.is_started).then(function() {
self.list_view.stop();
$.when(self.load_view()).then(function() {
console.log("lalala2");
self.list_view.reload_content();
});
});