[Improved]On kanban view, if click inside a column, bounce the related quick create[+]

bzr revid: psa@tinyerp.com-20120703061128-u7k490cdo8e8uuag
This commit is contained in:
Paramjit Singh Sahota 2012-07-03 11:41:28 +05:30
parent 219ad444b7
commit 07575c10f2
1 changed files with 2 additions and 2 deletions

View File

@ -415,11 +415,11 @@ instance.web_kanban.KanbanGroup = instance.web.OldWidget.extend({
self.quick.appendTo($(".oe_kanban_group_list_header", self.$records));
self.quick.focus();
});
var click_column = this.$element.find('.oe_kanban_add');
var click_column = this.$element.find('.oe_kanban_add');
click_column.css({"float":"right"});
this.$records.click(function() {
click_column.effect("bounce", { times:3 }, 300);
});
this.$records.find('.oe_kanban_show_more').click(this.do_show_more);
if (this.state.folded) {
this.do_toggle_fold();