fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Visual editor: changing tag/class via edit pane
[fnpeditor.git]
/
modules
/
visualEditor.transformations.js
diff --git
a/modules/visualEditor.transformations.js
b/modules/visualEditor.transformations.js
index
2edf3d0
..
7374f2e
100644
(file)
--- a/
modules/visualEditor.transformations.js
+++ b/
modules/visualEditor.transformations.js
@@
-20,8
+20,7
@@
if(typeof module !== 'undefined' && module.exports) {
tagName = tagName.toLowerCase();
console.log('running ' + tagName);
toret.find(tagName).replaceWith(function() {
tagName = tagName.toLowerCase();
console.log('running ' + tagName);
toret.find(tagName).replaceWith(function() {
- var suffix = tagName !== 'div' ? tagName : 'block';
- var toret = $('<div></div>').attr('wlxml-tag', suffix);
+ var toret = $('<div></div>').attr('wlxml-tag', tagName);
var currentTag = $(this);
if(currentTag.attr('class'))
toret.attr('wlxml-class', currentTag.attr('class'));
var currentTag = $(this);
if(currentTag.attr('class'))
toret.attr('wlxml-class', currentTag.attr('class'));