mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
Fixing non breakable space insertion
This commit is contained in:
@ -281,7 +281,7 @@ window.zerobin = {
|
||||
getPasteContent: function(){
|
||||
var copy = '' ;
|
||||
$("#paste-content li").each(function(index) {
|
||||
copy = copy + $(this).text() + '\n';
|
||||
copy = copy + $(this).text().replace(/[\u00a0]+/g, ' ') + '\n';
|
||||
});
|
||||
return copy;
|
||||
},
|
||||
|
Reference in New Issue
Block a user