From 0303ee9d38ee338b8d98f86d748ce41f70845137 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Thu, 18 Apr 2013 15:47:06 +0200 Subject: [PATCH] Visual editor: using dash instead of dot in wlxml-class attribute This makes it possible to target nodes via [attr|=value] CSS selector --- modules/visualEditor.transformations.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/visualEditor.transformations.js b/modules/visualEditor.transformations.js index 7374f2e..725aaea 100644 --- a/modules/visualEditor.transformations.js +++ b/modules/visualEditor.transformations.js @@ -23,7 +23,7 @@ if(typeof module !== 'undefined' && module.exports) { var toret = $('
').attr('wlxml-tag', tagName); var currentTag = $(this); if(currentTag.attr('class')) - toret.attr('wlxml-class', currentTag.attr('class')); + toret.attr('wlxml-class', currentTag.attr('class').replace(/\./g, '-')); toret.append(currentTag.contents()); return toret; }); @@ -35,7 +35,7 @@ if(typeof module !== 'undefined' && module.exports) { var currentTag = $(this); var toret = $('').attr('wlxml-tag', tagName); if(currentTag.attr('class')) - toret.attr('wlxml-class', currentTag.attr('class')); + toret.attr('wlxml-class', currentTag.attr('class').replace(/\./g, '-')); toret.append(currentTag.contents()); return toret; }); @@ -70,7 +70,7 @@ if(typeof module !== 'undefined' && module.exports) { var tagName = div.attr('wlxml-tag'); var toret = $('<'+tagName+'>'); if(div.attr('wlxml-class')) - toret.attr('class', div.attr('wlxml-class')) + toret.attr('class', div.attr('wlxml-class').replace(/-/g, '.')) toret.append(div.contents()); return toret; }); -- 2.20.1