Browse Source

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

pull/1312/head
Guewen Baconnier 11 years ago
committed by Timon Tschanz
parent
commit
848b457995
  1. 9
      web_translate_dialog/static/src/js/web_translate_dialog.js

9
web_translate_dialog/static/src/js/web_translate_dialog.js

@ -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) {
},
});
};
Loading…
Cancel
Save