Skip to content

Commit fd25c36

Browse files
committed
Let formatlesspaste plugin remove empty tags RT#57942
Previously, it would try to unwrap() an empty jQuery object to remove an empty element, now it just removes an element if it's empty. (cherry picked from commit b0fa832)
1 parent 4c024fb commit fd25c36

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The extra/formatlesspaste plugin now can remove tags that don't contain text (e.g. img)

src/plugins/extra/formatlesspaste/lib/formatlesshandler.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ define([
4343
*/
4444
function removeFormatting($content, toStrip) {
4545
$content.find(toStrip.join(',')).each(function () {
46-
$(this).contents().unwrap();
46+
if ($(this).contents().length === 0) {
47+
$(this).remove();
48+
} else {
49+
$(this).contents().unwrap();
50+
}
4751
});
4852
}
4953

0 commit comments

Comments
 (0)