1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 09:17:59 +01:00

More of the same.

This commit is contained in:
Kris Maglione
2008-10-01 03:22:46 +00:00
parent 75ac81eb5c
commit 4014da43e1
2 changed files with 8 additions and 9 deletions

View File

@@ -71,17 +71,17 @@ liberator.util = { //{{{
var str = arg.toString();
if (typeof str == "string") // can be "undefined"
return liberator.util.escapeHTML(str);
return <>{str}</>;
else
return "undefined";
}
}
catch (e)
{
return "&lt;unknown&gt;";
return <><![CDATA[<unknown>]]></>;
}
return "&lt;unknown type&gt;";
return <><![CDATA[<unknown type>]]></>;
},
copyToClipboard: function (str, verbose)