[FIX] Wrap xml into a div

jquery eats up <html> tags

bzr revid: fme@openerp.com-20120327110212-821anzbjvg2ula3q
This commit is contained in:
Fabien Meghazi 2012-03-27 13:02:12 +02:00
parent cd7ee55719
commit 53c88a671c
1 changed files with 1 additions and 1 deletions

View File

@ -754,7 +754,7 @@ openerp.web.FormRenderingEngine = openerp.web.Class.extend({
// TODO: I know this will save the world and all the kitten for a moment,
// but one day, we will have to get rid of xml2json
var xml = openerp.web.json_node_to_xml(this.fvg.arch);
this.$form = $(xml);
this.$form = $('<div>' + xml + '</div>');
this.to_init = [];
this.process(this.$form);