Hi,
Im in version 10.
In Project module want to override the javascript function on_card_clicked in project.js, wat i want is to delete the line this.$('.o_project_kanban_boxes a').first().click(); and replace it with this line "this._super.apply(this, arguments);"
Here is the original function : on_card_clicked: function () {
if (this.model === 'project.project') {
this.$('.o_project_kanban_boxes a').first().click();
} else { this._super.apply(this, arguments); } },
How can i override this js function? And is it possible to disconnect this function completely from the file project.js through js inheritence technique ?
Thanks