Browse Source

[IMP] upgrade from 6.1 to 7.0

pull/4/head
Hans van Dijk 11 years ago
parent
commit
2ea5f5dff4
  1. 16
      web_confirm_window_close/static/src/js/web_confirm_window_close.js

16
web_confirm_window_close/static/src/js/web_confirm_window_close.js

@ -7,20 +7,26 @@
*/ */
openerp.web_confirm_window_close = function(openerp) { openerp.web_confirm_window_close = function(openerp) {
//3 essential differences between 6.1 and 7.0
// - widget_parent replaced by ViewManager
// - $element. replaced by $el
// - $(window).bind replaced by $(window).on
openerp.web.FormView.include({ openerp.web.FormView.include({
warning_on_close: function() { warning_on_close: function() {
if (this.widget_parent && this.widget_parent.active_view == 'form' && this.$element.hasClass('oe_form_dirty')) {
if (this.ViewManager
&& this.ViewManager.active_view == 'form'
&& this.$el.hasClass('oe_form_dirty'))
// Firefox will show a generic confirmation dialog // Firefox will show a generic confirmation dialog
// When any text is returned here. // When any text is returned here.
return openerp.web._t('You have unsaved data in this window. Do you really want to leave?');
}
return openerp.web._t(
"You have unsaved data in this window. " +
"Do you really want to leave?");
}, },
start: function() { start: function() {
res = this._super(); res = this._super();
if (!(this.embedded_view)) { if (!(this.embedded_view)) {
$(window).bind('beforeunload', _.bind(
$(window).on("beforeunload", _.bind(
this.warning_on_close, this)); this.warning_on_close, this));
} }
return res; return res;

Loading…
Cancel
Save