Merge pull request #33 from memclutter/utterances-label
Added support for comment label customization
This commit is contained in:
commit
6eff0335c5
2 changed files with 3 additions and 1 deletions
|
@ -62,6 +62,7 @@ shortname = "hugo-minima"
|
|||
[params.utterances]
|
||||
repo = "mivinci/hugo-theme-minima"
|
||||
issueTerm = "pathname"
|
||||
label = "comment"
|
||||
|
||||
# **deprecated**
|
||||
# OvO is a comment plugin written by the author of Minima.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
const repo = '{{ .Site.Params.utterances.repo }}'
|
||||
const issueTerm = '{{ .Site.Params.utterances.issueTerm }}'
|
||||
const theme = localStorage.theme ? `github-${localStorage.theme}` : 'preferred-color-scheme';
|
||||
const label = '{{ .Site.Params.utterances.label }}'
|
||||
|
||||
const script = document.createElement('script')
|
||||
script.src = 'https://utteranc.es/client.js'
|
||||
|
@ -11,7 +12,7 @@
|
|||
script.setAttribute('repo', repo)
|
||||
script.setAttribute('issue-term', issueTerm)
|
||||
script.setAttribute('theme', theme)
|
||||
script.setAttribute('label', 'comment')
|
||||
script.setAttribute('label', label ? label : 'comment')
|
||||
|
||||
document.querySelector('main').appendChild(script)
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue