-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
101 lines (96 loc) · 2.23 KB
/
config.js
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
var conf =
{
domain: 'domain.ltd',
server_type: 'socket.io',
server: '192.168.1.104',
port: '3000',
debug: true,
auto_login: false,
sound_active: true,
login_popup: true,
tools_disabled: false,
search_case_sensitive: true,
tools:
{
icon: 'ui-icon-wrench'
},
options_disabled: false,
options:
{
icon: 'ui-icon-triangle-1-n'
},
bar:
{
default_expand: true,
icon_expand: 'ui-icon-arrowthickstop-1-e',
icon_collapse: 'ui-icon-arrowthickstop-1-w'
},
theme_default: 'smoothness',
themes:
[
{ name: 'black-tie' },
{ name: 'blitzer' },
{ name: 'cupertino' },
{ name: 'dark-hive' },
{ name: 'dot-luv' },
{ name: 'eggplant' },
{ name: 'excite-bike' },
{ name: 'flick' },
{ name: 'hot-sneaks' },
{ name: 'humanity' },
{ name: 'le-frog' },
{ name: 'mint-choc' },
{ name: 'overcast' },
{ name: 'pepper-grinder' },
{ name: 'redmond' },
{ name: 'south-street' },
{ name: 'start' },
{ name: 'sunny' },
{ name: 'swanky-purse' },
{ name: 'trontastic' },
{ name: 'ui-darkness' },
{ name: 'ui-lightness' },
{ name: 'vader' }
],
lang_default: 'cn', //Default selected lang in 'options', for change current language go to script tag in 'index.html'.
lang:
[
{
text: '中文',
i18n: 'cn'
},
{
text: 'English',
i18n: 'en'
},
{
text: 'French',
i18n: 'fr'
},
{
text: 'Spanish',
i18n: 'es'
}
],
shortcuts:
[
{
text: 'Home',
href: 'https://github.com/lovelle/jquery-chat/',
icon: 'ui-icon-home',
target: '_blank'
},
{
text: 'Mail',
href: 'https://gmail.com/',
icon: 'ui-icon-mail-closed',
target: '_blank'
},
{
text: 'Search',
href: 'https://google.com/',
icon: 'ui-icon-search',
target: '_blank'
}
]
}