[FIX] [CLEAN] mail.js: removed references to mail.thread. There shouldnot have been any of them left...

bzr revid: tde@openerp.com-20121113142759-wwhd3bssent1861a
This commit is contained in:
Thibault Delavallée 2012-11-13 15:27:59 +01:00
parent 99354ab558
commit 0f3845bee6
1 changed files with 2 additions and 5 deletions

View File

@ -1003,10 +1003,7 @@ openerp.mail = function (session) {
init: function (parent, datasets, options) {
this._super(parent, options);
this.domain = options.domain || [];
this.context = _.extend({
default_model: 'mail.thread',
default_res_id: 0,
default_parent_id: false }, options.context || {});
this.context = _.extend(options.context || {});
this.options = options.options;
this.options.root_thread = (options.options.root_thread != undefined ? options.options.root_thread : this);
@ -1031,7 +1028,7 @@ openerp.mail = function (session) {
// object compose message
this.compose_message = false;
this.ds_thread = new session.web.DataSetSearch(this, this.context.default_model || 'mail.thread');
this.ds_thread = new session.web.DataSetSearch(this, this.context.default_model);
this.ds_message = new session.web.DataSetSearch(this, 'mail.message');
},