From 633ec310a40ad44acaec0fde3fd9cf84de157f85 Mon Sep 17 00:00:00 2001
From: Christophe Matthieu <chm@odoo.com>
Date: Mon, 15 Dec 2014 13:46:29 +0100
Subject: [PATCH] [FIX] website_instantclick: this lib create some bug because
 the odoo assets are loaded in the body and some event are binded more of one
 time. Change the js lib  because the xml can't be change in 8.0. TODO: move
 assets into the head and fix js files and remove this commit in master

---
 .../static/lib/instantclick/instantclick.js                  | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/addons/website_instantclick/static/lib/instantclick/instantclick.js b/addons/website_instantclick/static/lib/instantclick/instantclick.js
index e5e4e3447d34..0a9ae16008de 100644
--- a/addons/website_instantclick/static/lib/instantclick/instantclick.js
+++ b/addons/website_instantclick/static/lib/instantclick/instantclick.js
@@ -50,6 +50,11 @@ var InstantClick = function(document, location) {
 	}
 
 	function changePage(title, body, newUrl, scrollY_) {
+		// fix by odoo because the script assets are loaded in the body and not in the head
+		// TODO: remove wen forward port in master
+		$(document).off()
+ 		// end
+ 		
 		var doc = document.implementation.createHTMLDocument('')
 		doc.documentElement.innerHTML = body
 		document.documentElement.replaceChild(doc.body, document.body)
-- 
GitLab