[MERGE] Bounce effect on QUICK CREATE[+] Button in KANBAN VIEW.

bzr revid: psa@tinyerp.com-20120711050425-eiywgtwi0upzmm80
This commit is contained in:
Paramjit Singh Sahota 2012-07-11 10:34:25 +05:30
parent 9b936e7e29
commit d5e57ecdf5
1 changed files with 6 additions and 2 deletions

View File

@ -417,9 +417,13 @@ instance.web_kanban.KanbanGroup = instance.web.OldWidget.extend({
});
var click_column = this.$element.find('.oe_kanban_add');
click_column.addClass('oe_kanban_quick_create_bounce');
this.$records.click(function() {
this.$records.click(function(e) {
var $target = e.target;
var $currenttarget = e.currentTarget;
if ($target == $currenttarget) {
self.view.do_bounce(click_column);
});
}
});
this.$records.find('.oe_kanban_show_more').click(this.do_show_more);
if (this.state.folded) {
this.do_toggle_fold();