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:
@@ -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) { }
|
||||
}
|
||||
});
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
|
||||
Reference in New Issue
Block a user