2017-03-19 17:39:09 +00:00
|
|
|
export const DROPBOX_APP_KEY = window.DROPBOX_APP_KEY || ''
|
2017-01-13 14:46:38 +00:00
|
|
|
|
2017-03-19 17:39:09 +00:00
|
|
|
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
|
2017-01-13 14:46:38 +00:00
|
|
|
|
2017-03-08 18:41:05 +00:00
|
|
|
export const port = window.location.port
|
|
|
|
export const serverurl = `${window.location.protocol}//${domain || window.location.hostname}${port ? ':' + port : ''}${urlpath ? '/' + urlpath : ''}`
|
|
|
|
window.serverurl = serverurl
|
2018-06-26 20:25:11 +00:00
|
|
|
export const noteid = decodeURIComponent(urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1])
|
2017-03-08 18:41:05 +00:00
|
|
|
export const noteurl = `${serverurl}/${noteid}`
|
2017-01-13 14:46:38 +00:00
|
|
|
|
2017-03-19 17:39:09 +00:00
|
|
|
export const version = window.version
|