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

[muttator] some new compose mappings

This commit is contained in:
Martin Stubenschrott
2008-06-08 23:48:33 +00:00
parent 460e56acaf
commit ec91920bb8
4 changed files with 36 additions and 5 deletions

View File

@@ -180,8 +180,22 @@ liberator.Buffer = function () //{{{
"Show current website with a minimal style sheet to make it easily accessible",
"boolean", false,
{
setter: function (value) { getMarkupDocumentViewer().authorStyleDisabled = value; },
getter: function () { return getMarkupDocumentViewer().authorStyleDisabled; },
setter: function (value)
{
try
{
getMarkupDocumentViewer().authorStyleDisabled = value;
}
catch (e) { }
},
getter: function ()
{
try
{
return getMarkupDocumentViewer().authorStyleDisabled;
}
catch (e) { }
}
});
/////////////////////////////////////////////////////////////////////////////}}}