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

Merge pull request #30 from Natim/12_shorten_url_for_email_this

[CopyToClipboard] If there is no coloration, use the decrypted content
This commit is contained in:
sametmax 2013-01-31 07:31:15 -08:00
commit 9a0efa7fa7

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;
},