8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
|
export const setTitle = title => {
|
||
|
if (typeof title === 'undefined' || title === '') {
|
||
|
document.title = 'Vikunja'
|
||
|
return
|
||
|
}
|
||
|
|
||
|
document.title = `${title} | Vikunja`
|
||
|
}
|