From f1a5428285aa5741b76bf9a7c64bcdeecf6d1916 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Mon, 29 Apr 2013 10:39:32 +0200 Subject: [PATCH] Visual editor - fixing not having ids on wlxml tags before those get inserted into DOM Temporary workaround --- modules/visualEditor.transformations.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/visualEditor.transformations.js b/modules/visualEditor.transformations.js index 0a8fc2f..555c03c 100644 --- a/modules/visualEditor.transformations.js +++ b/modules/visualEditor.transformations.js @@ -24,6 +24,7 @@ if(typeof module !== 'undefined' && module.exports) { if(currentTag.attr('wlxml-tag')) return; var toret = $('<' + replacingTagName + '>').attr('wlxml-tag', tagName); + toret.attr('id', 'xxxxxxxx-xxxx-xxxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {var r = Math.random()*16|0,v=c=='x'?r:r&0x3|0x8;return v.toString(16);})); for(var i = 0; i < this.attributes.length; i++) { var attr = this.attributes.item(i); var value = attr.name === 'class' ? attr.value.replace(/\./g, '-') : attr.value; -- 2.20.1