1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-31 19:12:34 +01:00

Merge branch 'master' into vimperator-2.1

Conflicts:
	common/content/buffer.js
	common/content/style.js
This commit is contained in:
Kris Maglione
2008-12-19 17:13:44 -05:00
7 changed files with 75 additions and 39 deletions

View File

@@ -883,9 +883,9 @@ function CommandLine() //{{{
set silent(val) {
silent = val;
if (silent)
storage.styles.addSheet("silent-mode", "chrome://*", "#liberator-commandline > * { opacity: 0 }", true, true);
storage.styles.addSheet(true, "silent-mode", "chrome://*", "#liberator-commandline > * { opacity: 0 }");
else
storage.styles.removeSheet("silent-mode", null, null, null, true);
storage.styles.removeSheet(true, "silent-mode");
},
runSilently: function (fn, self)