diff --git a/client/dcwebui.js b/client/dcwebui.js index d852fb9..700a895 100644 --- a/client/dcwebui.js +++ b/client/dcwebui.js @@ -34,10 +34,6 @@ var hesc = function(s) { return s.toString().replace(/[&<>'"]/g, function(s) { return filter[s]; }); }; -var nl2br = function(str) { // thanks php.js! - return (str+'').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1
$2'); -}; - var linkify = function(str) { return str.replace( /(https?:\/\/[^\s<]+)/g, "$1"