1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00

If there is no coloration, use the decrypted content

This commit is contained in:
Rémy HUBSCHER 2013-01-31 14:00:53 +01:00
parent ab9ef15de2
commit fb957f8cde

View File

@ -318,6 +318,9 @@
$("#paste-content li").each(function (index) {
copy = copy + $(this).text().replace(/[\u00a0]+/g, ' ') + '\n';
});
if (copy == '') {
copy = $("#paste-content").text();
}
return copy;
},