Browse Source

🌈 pre-commit: no-empty-function

pull/270/head
Denis Mudarisov 5 years ago
parent
commit
f0a96a853b
  1. 8
      mail_move_message/static/src/js/mail_move_message.js

8
mail_move_message/static/src/js/mail_move_message.js

@ -53,7 +53,9 @@ odoo.define("mail_move_message.relocate", function(require) {
thread = this.fields.thread.thread; thread = this.fields.thread.thread;
thread.on("move_message", this, thread.on_move_message); thread.on("move_message", this, thread.on_move_message);
} }
return $.when(result).done(function() {});
return $.when(result).done(function() {
// Empty
});
}, },
}); });
@ -63,7 +65,9 @@ odoo.define("mail_move_message.relocate", function(require) {
var result = this._super.apply(this, arguments); var result = this._super.apply(this, arguments);
// For show wizard in the channels // For show wizard in the channels
this.thread.on("move_message", this, this.thread.on_move_message); this.thread.on("move_message", this, this.thread.on_move_message);
return $.when(result).done(function() {});
return $.when(result).done(function() {
// Empty
});
}, },
}); });

Loading…
Cancel
Save