[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

This commit is contained in:
Christophe Matthieu 2014-12-15 13:46:29 +01:00
parent b6b73551db
commit 633ec310a4
1 changed files with 5 additions and 0 deletions

View File

@ -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)