Merge pull request #997 from Tardo/fix#981

[11.0][FIX] web_dialog_size: Draggable Dialog
pull/984/merge
Pedro M. Baeza 2018-07-20 07:37:05 +02:00 committed by GitHub
commit f09c45b02b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -26,15 +26,15 @@ Dialog.include({
}); });
}, },
open: function() { opened: function(handler) {
this._super.apply(this, arguments); 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
}); });
} }
return this; }.bind(this));
}, },
close: function() { close: function() {