1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 22:54:12 +01:00

whitespace fixes

This commit is contained in:
Doug Kearns
2008-10-19 14:09:55 +00:00
parent 9fc85871c8
commit 337f956323

View File

@@ -39,11 +39,11 @@ const template = {
// some objects like window.JSON or getBrowsers()._browsers need the try/catch
try
{
switch (arg == null ? "undefined" : typeof arg)
{
case "number":
return <span class="hl-Number">{arg}</span>;
case "string":
switch (arg == null ? "undefined" : typeof arg)
{
case "number":
return <span class="hl-Number">{arg}</span>;
case "string":
if (processStrings)
arg = <>{util.escapeString(arg)}</>;
return <span class="hl-String">{arg}</span>;