File: options_defaults.js

package info (click to toggle)
allow-html-temp 10.0.8-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 368 kB
  • sloc: javascript: 1,454; makefile: 25; sh: 7
file content (19 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const DefaultOptions = {
  debug: false,
  commandKey: "Ctrl+Alt+F5",
  buttonHtmlMode: "buttonMode_html",
  tempRemoteContent: false,
  tempInline: false
}
const OptionsList = Object.keys(DefaultOptions);

const DefaultPrefs = {
  appHtmlMode: "appMode_sanitized",
  appRemoteContent: true,
  allwaysInline: false
}
const PrefsList = Object.keys(DefaultPrefs);

function defaultError(error) {
  console.error("AHT: Error:", error);
}