[FIX] Fix kanban cells auto height

bzr revid: fme@openerp.com-20121016153840-z4mk6367itr1fwz7
This commit is contained in:
Fabien Meghazi 2012-10-16 17:38:40 +02:00
parent 7c3b7d8fad
commit 1f32b294a0
1 changed files with 3 additions and 1 deletions

View File

@ -307,6 +307,9 @@ instance.web_kanban.KanbanView = instance.web.View.extend({
return $.when.apply(null, groups_started).then(function () {
self.on_groups_started();
self.$el.appendTo($parent);
_.each(self.groups, function(group) {
group.compute_cards_auto_height();
});
});
},
on_groups_started: function() {
@ -598,7 +601,6 @@ instance.web_kanban.KanbanGroup = instance.web.Widget.extend({
this.$el.data('widget', this);
this.$records.data('widget', this);
this.$has_been_started.resolve();
this.compute_cards_auto_height();
var add_btn = this.$el.find('.oe_kanban_add');
add_btn.tipsy({delayIn: 500, delayOut: 1000});
this.$records.click(function (ev) {