[CLEAN] TopButton: removed unnecessary options in context.

bzr revid: tde@openerp.com-20121018164533-8np5jqw8d3gv1kf1
This commit is contained in:
Thibault Delavallée 2012-10-18 18:45:33 +02:00
parent b2e7caca7d
commit a6a47fc949
1 changed files with 2 additions and 9 deletions

View File

@ -1379,10 +1379,9 @@ openerp.mail = function(session) {
* UserMenu
* ------------------------------------------------------------
*
* add a link on the top user bar for write a full mail
* Add a link on the top user bar for write a full mail
*/
session.web.ComposeMessageTopButton = session.web.Widget.extend({
template:'mail.compose_message.button_top_bar',
init: function (parent, options) {
@ -1390,14 +1389,9 @@ openerp.mail = function(session) {
this.options = this.options || {};
this.options.domain = this.options.domain || [];
this.options.context = {
'default_res_id': 0,
'default_model': 'mail.thread',
'default_is_private': true,
'default_res_model': false,
'default_model': false,
'default_res_id': 0,
'default_content_subtype': 'html',
'default_is_private': true,
'default_parent_id': 0
};
},
@ -1430,7 +1424,6 @@ openerp.mail = function(session) {
render.insertAfter(this.$el);
this._super(parent, params);
}
});
};