mirror of https://github.com/OCA/web.git
[FIX] web_dialog_size js warnings
parent
69f82f7048
commit
abaca8693c
|
@ -1,22 +1,26 @@
|
||||||
odoo.define('web_dialog_size.web_dialog_size', function (require) {
|
odoo.define('web_dialog_size.web_dialog_size', function (require) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var rpc = require('web.rpc');
|
var rpc = require('web.rpc');
|
||||||
var Dialog = require('web.Dialog');
|
var Dialog = require('web.Dialog');
|
||||||
|
|
||||||
var config = rpc.query({
|
var config = rpc.query({
|
||||||
model: 'ir.config_parameter',
|
model: 'ir.config_parameter',
|
||||||
method: 'get_web_dialog_size_config',
|
method: 'get_web_dialog_size_config',
|
||||||
});
|
});
|
||||||
|
|
||||||
Dialog.include({
|
Dialog.include({
|
||||||
|
|
||||||
willStart: function () {
|
willStart: function () {
|
||||||
var self = this;
|
var self = this;
|
||||||
return this._super.apply(this, arguments).then(function () {
|
return this._super.apply(this, arguments).then(function () {
|
||||||
self.$modal.find('.dialog_button_extend').on('click', self.proxy('_extending'));
|
self.$modal.find('.dialog_button_extend').on('click',
|
||||||
self.$modal.find('.dialog_button_restore').on('click', self.proxy('_restore'));
|
self.proxy('_extending')
|
||||||
return config.then(function(r) {
|
);
|
||||||
|
self.$modal.find('.dialog_button_restore').on('click',
|
||||||
|
self.proxy('_restore')
|
||||||
|
);
|
||||||
|
return config.then(function (r) {
|
||||||
if (r.default_maximize) {
|
if (r.default_maximize) {
|
||||||
self._extending();
|
self._extending();
|
||||||
} else {
|
} else {
|
||||||
|
@ -26,18 +30,18 @@ Dialog.include({
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
opened: function(handler) {
|
opened: function () {
|
||||||
return this._super.apply(this, arguments).then(function(){
|
return this._super.apply(this, arguments).then(function () {
|
||||||
if (this.$modal) {
|
if (this.$modal) {
|
||||||
this.$modal.draggable({
|
this.$modal.draggable({
|
||||||
handle: '.modal-header',
|
handle: '.modal-header',
|
||||||
helper: false
|
helper: false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
close: function() {
|
close: function () {
|
||||||
if (this.$modal) {
|
if (this.$modal) {
|
||||||
var draggable = this.$modal.draggable("instance");
|
var draggable = this.$modal.draggable("instance");
|
||||||
if (draggable) {
|
if (draggable) {
|
||||||
|
@ -47,20 +51,20 @@ Dialog.include({
|
||||||
return this._super.apply(this, arguments);
|
return this._super.apply(this, arguments);
|
||||||
},
|
},
|
||||||
|
|
||||||
_extending: function() {
|
_extending: function () {
|
||||||
var dialog = this.$modal.find('.modal-dialog');
|
var dialog = this.$modal.find('.modal-dialog');
|
||||||
dialog.addClass('dialog_full_screen');
|
dialog.addClass('dialog_full_screen');
|
||||||
dialog.find('.dialog_button_extend').hide();
|
dialog.find('.dialog_button_extend').hide();
|
||||||
dialog.find('.dialog_button_restore').show();
|
dialog.find('.dialog_button_restore').show();
|
||||||
},
|
},
|
||||||
|
|
||||||
_restore: function() {
|
_restore: function () {
|
||||||
var dialog = this.$modal.find('.modal-dialog');
|
var dialog = this.$modal.find('.modal-dialog');
|
||||||
dialog.removeClass('dialog_full_screen');
|
dialog.removeClass('dialog_full_screen');
|
||||||
dialog.find('.dialog_button_restore').hide();
|
dialog.find('.dialog_button_restore').hide();
|
||||||
dialog.find('.dialog_button_extend').show();
|
dialog.find('.dialog_button_extend').show();
|
||||||
},
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue