[FIX] error when a view has no sidebar (popup)

This commit is contained in:
Guewen Baconnier
2013-12-06 14:05:24 +01:00
committed by fshah
parent 8a37103af4
commit f57bb2a855

View File

@@ -10,9 +10,11 @@ openerp.web_translate_dialog = function (instance) {
load_form: function(data) {
var self = this;
this._super(data);
this.sidebar.add_items('other', _.compact([
self.is_action_enabled('edit') && { label: _t('Translate'), callback: self.on_button_translate },
]));
if (this.sidebar) {
this.sidebar.add_items('other', _.compact([
self.is_action_enabled('edit') && { label: _t('Translate'), callback: self.on_button_translate },
]));
}
},
on_button_translate: function() {
var self = this;
@@ -199,4 +201,3 @@ openerp.web_translate_dialog = function (instance) {
},
});
};