diff options
author | Christoph (Sheogorath) Kern | 2018-06-26 21:38:02 +0200 |
---|---|---|
committer | GitHub | 2018-06-26 21:38:02 +0200 |
commit | 6634fac84964d4f292599a9f368c182e6f10045c (patch) | |
tree | d93e6a6574ad972a27b372fc12e0539b57ca8868 /public/js | |
parent | d87505d5836ea1bad60c0e2c2a8aa25b9b4e1590 (diff) | |
parent | 2184491f4ac4b224e26fcc4b54d792dd4e82178f (diff) |
Merge pull request #850 from SISheogorath/rebrand/CodiMD
Rebrand HackMD CE to CodiMD
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/cover.js | 2 | ||||
-rw-r--r-- | public/js/extra.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/public/js/cover.js b/public/js/cover.js index 6ca05f6f..79fb3a2a 100644 --- a/public/js/cover.js +++ b/public/js/cover.js @@ -318,7 +318,7 @@ $('.ui-save-history').click(() => { const blob = new Blob([history], { type: 'application/json;charset=utf-8' }) - saveAs(blob, `hackmd_history_${moment().format('YYYYMMDDHHmmss')}`, true) + saveAs(blob, `codimd_history_${moment().format('YYYYMMDDHHmmss')}`, true) }) }) diff --git a/public/js/extra.js b/public/js/extra.js index dbb0f458..d6bbb0c6 100644 --- a/public/js/extra.js +++ b/public/js/extra.js @@ -105,9 +105,9 @@ function getTitle (view) { export function renderTitle (view) { let title = getTitle(view) if (title) { - title += ' - HackMD' + title += ' - CodiMD' } else { - title = 'HackMD - Collaborative markdown notes' + title = 'CodiMD - Collaborative markdown notes' } return title } |