blob: e74d97f562ba19fc73780872e424d12e8fe042b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
odoo.define('mass_mailing.mass_mailing', function (require) {
"use strict";
var KanbanColumn = require('web.KanbanColumn');
KanbanColumn.include({
init: function () {
this._super.apply(this, arguments);
if (this.modelName === 'mailing.mailing') {
this.draggable = false;
}
},
});
});
|