-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·72 lines (72 loc) · 3.08 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Kiwi IRC - client builder</title>
<link rel="stylesheet" href="static/clientbuilder-stylesheet.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nothing+You+Could+Do" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://kiwiirc.com/css/font-awesome.min.css">
<link rel="stylesheet" href="https://kiwiirc.com/css/main.css">
</head>
<body>
<div id="app"></div>
<script>
window.kiwiuser = {
kiwi_instance: 'http://localhost:8180/kiwiirc/',
// When api_endpoint is disabled it will offer a json config to copy
// api_endpoint: 'http://localhost:8181/client-builder',
savableConfig: {
"theme": true,
"useMonospace": true,
"showColorPicker": true,
"plugins": true,
"startupOptions": {
"greetingText": true,
"buttonText": true,
"infoContent": true,
"infoBackground": true,
"showChannel": true,
"showPassword": true,
"server": true,
"port": true,
"encoding": true,
"tls": true,
"channel": true,
"nick": true,
"password": true,
"gecos": true,
"directPath": true,
"direct": true
},
"buffers":{
"messageLayout": true,
"show_emoticons": true,
"extra_formatting": true,
"block_pms": true,
"show_joinparts": true,
"show_timestamps": true,
"show_hostnames": true,
"show_topics": true,
"show_nick_changes": true,
"show_mode_changes": true,
"traffic_as_activity": true,
"coloured_nicklist": true,
"colour_nicknames_in_messages": true,
"mute_sound": true,
"hide_message_counts": true,
"show_realnames": true,
"shared_input": true,
"show_message_info": true,
"who_loops": true,
"share_typing": true,
"flash_title": true,
"inline_link_auto_previews": true
}
},
};
</script>
<!-- built files will be auto injected -->
</body>
</html>