-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
68 lines (56 loc) · 2.04 KB
/
index.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
const updateTime = () => {
let date = new Date()
// pad a leading 0
const pad = t => (`${t}`.length < 2) ? `0${t}` : `${t}`
let hours = date.getHours()
let ampm = hours < 12 ? 'AM' : 'PM'
if (ampm === 'PM') { hours -= 12 }
if (hours === 0) { hours = 12 }
let mins = date.getMinutes()
document.querySelector('#time').innerText = `${hours}:${pad(mins)} ${ampm}`
setTimeout(updateTime, 1000);
}
updateTime()
const upgradeWelcomeResume = () => {
let link = document.querySelector('[data-upgrade="intro-launchresume"]')
link.addEventListener('click', e => {
e.preventDefault()
window.pm.createInstance('resume')
})
link = document.querySelector('[data-upgrade="intro-launchcv"]')
link.addEventListener('click', e => {
e.preventDefault()
window.pm.createInstance('cv')
})
link = document.querySelector('[data-upgrade="intro-launchportfolio"]')
link.addEventListener('click', e => {
e.preventDefault()
window.pm.createInstance('portfolio')
})
link = document.querySelector('[data-upgrade="intro-launchemail"]')
link.addEventListener('click', e => {
e.preventDefault()
window.pm.createInstance('email')
})
}
upgradeWelcomeResume()
// make sure we can re-open later without copying too much code
const saveWelcomePage = () => {
window.__welcomepage = document
.querySelector('.window[data-name="Welcome!"]')
.querySelector('.window-body')
.innerHTML
}
saveWelcomePage()
const isMobileBrowser = () => (typeof window.orientation !== "undefined") || (navigator.userAgent.indexOf('IEMobile') !== -1)
/* shims for mobile */
const recalculateHeight = () => {
document.body.style.height = `${window.innerHeight}px`
}
window.addEventListener('load', recalculateHeight)
window.addEventListener('resize', recalculateHeight)
window.addEventListener('orientationchange', recalculateHeight)
// redirect if you hit the old domain
if (location.host === 'kage.dev') {
location.href = 'https://ka.ge'
}