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

bzr revid: psa@tinyerp.com-20120704062807-579ovj2h5unkxbok
This commit is contained in:
Paramjit Singh Sahota 2012-07-04 11:58:07 +05:30
parent d5572fdc8a
commit 0a27cc3c1c
2 changed files with 2 additions and 2 deletions

View File

@ -457,6 +457,6 @@
padding: 0px;
background: white;
}
.openerp .oe_kanban_quick_create {
.openerp .oe_kanban_quick_create_bounce {
float: right;
}

View File

@ -416,7 +416,7 @@ instance.web_kanban.KanbanGroup = instance.web.OldWidget.extend({
self.quick.focus();
});
var click_column = this.$element.find('.oe_kanban_add');
click_column.addClass('oe_kanban_quick_create');
click_column.addClass('oe_kanban_quick_create_bounce');
this.$records.click(function() {
self.view.do_bounce(click_column);
});