1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-09 12:24:11 +01:00

Remove some config.name checks. Add configbase module.

This commit is contained in:
Kris Maglione
2009-05-23 21:08:50 -04:00
parent 16b8af74d1
commit b8aab050e9
8 changed files with 39 additions and 42 deletions

View File

@@ -27,26 +27,29 @@ the terms of any one of the MPL, the GPL or the LGPL.
}}} ***** END LICENSE BLOCK *****/
const configbase = { //{{{
features: [],
autocommands: [],
get browserModes() [modes.NORMAL],
defaults: { guioptions: "rb" },
guioptions: {},
autocommands: [],
dialogs: [],
features: [],
guioptions: {},
hasTabbrowser: false,
// they are sorted by relevance, not alphabetically
helpFiles: [],
init: function () {},
ignoreKeys: {},
optionDefaults: {},
scripts: [],
init: function () {},
}; //}}}
// vim: set fdm=marker sw=4 ts=4 et: