1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 04:37:58 +01:00

Merge with master.

This commit is contained in:
Kris Maglione
2008-12-18 14:03:15 -05:00
11 changed files with 24 additions and 30 deletions

View File

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