1
1
//// Application variables ////
2
+ // Copy these to app.variables.js in the root of the project
2
3
3
4
// domain name of the site
4
- global . siteDomain = ' example.com'
5
+ global . siteDomain = " example.com" ;
5
6
6
7
// the app's name
7
- global . appName = ' DiscoSingle'
8
+ global . appName = " DiscoSingle" ;
8
9
9
10
// App ID from OneSignal (see readme, needs manual update)
10
11
// global.oneSignalAppId = 'ONESIGNAL_APP_ID'
@@ -13,38 +14,39 @@ global.appName = 'DiscoSingle'
13
14
// global.googleProjectNumber = 'ONESIGNAL_GOOGLE_PROJECT_NUMBER'
14
15
15
16
// Show login form on splash screen
16
- global . showLoginForm = true
17
+ global . showLoginForm = true ;
17
18
18
19
// OneSignal in-app focus behaviour
19
20
// 0 = no notification, 1 = alert dialog with a message, 2 = regular notification (same as when app is not in focus)
20
- global . inAppNotification = 2
21
+ global . inAppNotification = 2 ;
21
22
22
23
// URLs to load directly in app
23
- global . internalURLs = [ ' oauth' ]
24
+ global . internalURLs = [ " oauth" ] ;
24
25
25
26
// Styling variables
26
- global . bgColor = '#FFFFFF'
27
- global . textColor = '#333333'
28
- global . buttonColor = '#bb3c2b'
29
- global . introText = 'Welcome! Please log in or signup to get started. Make sure to authenticate the application in order to enable notifications.' ;
30
- global . loginText = 'Login'
31
- global . skipText = 'Skip'
27
+ global . bgColor = "#FFFFFF" ;
28
+ global . textColor = "#333333" ;
29
+ global . buttonColor = "#bb3c2b" ;
30
+ global . introText =
31
+ "Welcome! Please log in or signup to get started. Make sure to authenticate the application in order to enable notifications." ;
32
+ global . loginText = "Login" ;
33
+ global . skipText = "Skip" ;
32
34
33
35
// if showLoginForm is disabled, the following variables are used
34
- global . primaryStartButtonText = ' Launch'
35
- global . primaryStartButtonTextColor = ' #FFFFFF'
36
- global . primaryStartUrl = ''
37
- global . secondaryStartButtonText = ''
38
-
39
- global . connectText = ' Connect'
40
- global . connectButtonBgColor = ' #bb3c2b'
41
- global . connectButtonTextColor = ' #FFFFFF'
42
- global . acctText = ' No account? Click here'
43
- global . acctUrl = ' /signup'
44
- global . TOSText = ' By continuing, you agree to our '
45
- global . TOSLinkText = ' Terms of Service'
46
- global . TOSUrl = ' /tos'
47
- global . TOSTextColor = ' #555555'
48
-
49
- global . usernamePlaceholder = ' Username'
50
- global . passwordPlaceholder = ' Password'
36
+ global . primaryStartButtonText = " Launch" ;
37
+ global . primaryStartButtonTextColor = " #FFFFFF" ;
38
+ global . primaryStartUrl = "" ;
39
+ global . secondaryStartButtonText = "" ;
40
+
41
+ global . connectText = " Connect" ;
42
+ global . connectButtonBgColor = " #bb3c2b" ;
43
+ global . connectButtonTextColor = " #FFFFFF" ;
44
+ global . acctText = " No account? Click here" ;
45
+ global . acctUrl = " /signup" ;
46
+ global . TOSText = " By continuing, you agree to our " ;
47
+ global . TOSLinkText = " Terms of Service" ;
48
+ global . TOSUrl = " /tos" ;
49
+ global . TOSTextColor = " #555555" ;
50
+
51
+ global . usernamePlaceholder = " Username" ;
52
+ global . passwordPlaceholder = " Password" ;
0 commit comments