1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-09 17:45:02 +09:00

webclipper fixes

This commit is contained in:
Andrew Simachev 2024-03-04 13:51:59 +01:00
parent 5731192491
commit f9a10e0042
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
3 changed files with 9 additions and 3 deletions

View file

@ -104,7 +104,7 @@
let html = '';
if (sel.rangeCount) {
const container = document.createElement("div");
const container = document.createElement('div');
for (var i = 0, len = sel.rangeCount; i < len; ++i) {
container.appendChild(sel.getRangeAt(i).cloneContents());
};