summaryrefslogtreecommitdiff
path: root/public/js/lib/config/index.js
blob: 4758ffe75f01c5cb7fa095b5d7b727834977a766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const DROPBOX_APP_KEY = window.DROPBOX_APP_KEY || ''

export const domain = window.domain || '' // domain name
export const urlpath = window.urlpath || '' // sub url path, like: www.example.com/<urlpath>
export const debug = window.debug || false

export const port = window.location.port
export const serverurl = `${window.location.protocol}//${domain || window.location.hostname}${port ? ':' + port : ''}${urlpath ? '/' + urlpath : ''}`
window.serverurl = serverurl
export const noteid = urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1]
export const noteurl = `${serverurl}/${noteid}`

export const version = window.version