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

expand environment variables when setting 'cdpath' and 'shell'

This commit is contained in:
Doug Kearns
2008-09-01 13:36:15 +00:00
parent 26adf51554
commit 339dd911cd
9 changed files with 76 additions and 8 deletions

View File

@@ -149,7 +149,11 @@ liberator.Buffer = function () //{{{
"Show the current window fullscreen",
"boolean", false,
{
setter: function (value) { window.fullScreen = value; },
setter: function (value)
{
window.fullScreen = value;
return value;
},
getter: function () { return window.fullScreen; }
});
@@ -199,6 +203,8 @@ liberator.Buffer = function () //{{{
getMarkupDocumentViewer().authorStyleDisabled = value;
}
catch (e) {}
return value;
},
getter: function ()
{