blob: 3e69b2dc779c8f11d651997281a396d337a4ee16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
var CONFIG = {
// Language of templates to use ( should be name of directory under www/templates/ )
LANGUAGE: 'en',
// Name of app to use in alert dialog titles amongst other things
APP_NAME: 'FixMyStreet',
// URL of the fixmystreet install to report to. See also config.xml-example
FMS_URL: 'http://fixmystreet.example.org/',
// Name of the cobrand to use for templates, stylesheets etc.
// Cobrand files should be placed in a new directory within www/cobrands/
// Leave as null to use the default templates.
COBRAND: null,
// namespace for storing drafts etc in. Should not need to change
NAMESPACE: 'fixmystreet',
// directory to store draft photos in. Should not need to change
FILES_DIR: 'photos',
// accuracy in meters required before geolocation is successful
ACCURACY: 100,
// how long, in milliseconds, before photo uploads timeout. Defaults to 120000 ( 2 minutes )
UPLOAD_TIMEOUT: 120000,
// Set to 1 to log debug messages to the console
DEBUG: 0,
// Whether the FMS installation is within the United Kingdom. Should not need to change.
isUK: 0
};
|