forked from caracal-js/Incognito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.js
33 lines (31 loc) · 1.07 KB
/
community.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
function community(app) {
app.search.title.style.display = 'block';
app.search.title.textContent = 'Community';
app.search.input.style.display = 'none';
app.main.support = app.createElement(
'div',
[
app.createElement('section', [
app.createElement('p', 'You are being taken to another website (discord.gg/unblock).', {
style: {
'margin-bottom': '0'
}
}),
app.createElement('p', 'Are you sure you want to <a href="https://discord.gg/unblock">proceed</a>?', {
style: {
'margin-bottom': '0'
}
}),
], {
class: 'data-section'
}),
]);
app.search.back.style.display = 'inline';
app.search.back.setAttribute(
'onclick',
'(' + (function(){
window.location.hash = '';
}).toString() + ')();'
)
};
export { community };