1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-18 17:15:52 +01:00

Add :sanitize, 'sanitizetimespan' and 'sanitizeitems'.

This commit is contained in:
Doug Kearns
2009-09-02 23:43:50 +10:00
parent 75f2481523
commit 11b54186d5
7 changed files with 384 additions and 23 deletions

View File

@@ -32,7 +32,7 @@ const config = { //{{{
hostApplication: "Firefox",
/*** optional options, there are checked for existence and a fallback provided ***/
features: ["bookmarks", "hints", "history", "marks", "quickmarks", "session", "tabs", "tabs_undo", "windows"],
features: ["bookmarks", "hints", "history", "marks", "quickmarks", "sanitizer", "session", "tabs", "tabs_undo", "windows"],
defaults: {
complete: "stlf",
guioptions: "rb",
@@ -141,6 +141,7 @@ const config = { //{{{
scripts: [
"browser.js",
"bookmarks.js",
"sanitizer.js",
"tabs.js"
],
@@ -179,6 +180,7 @@ const config = { //{{{
liberator.loadModule("marks", Marks);
liberator.loadModule("quickmarks", QuickMarks);
liberator.loadModule("hints", Hints);
liberator.loadModule("sanitizer", Sanitizer);
////////////////////////////////////////////////////////////////////////////////
////////////////////// STYLES //////////////////////////////////////////////////