diff --git a/clean-artifacts.js b/clean-artifacts.js index e2f8a5e..b263cd8 100644 --- a/clean-artifacts.js +++ b/clean-artifacts.js @@ -30,7 +30,7 @@ // removes all the wf* attributes used by the editor. function removeAttributes(doc){ - var editorAttrs = 'data-wfcb data-wflabel data-wfcz data-wfedit data-wfstyle draggable'.split(' '); + var editorAttrs = 'data-wfcb data-wflabel data-wfcz data-wfedit data-wfstyle draggable data-dnd'.split(' '); editorAttrs.forEach(function(attr){ removeAttribute(doc, attr); });