aboutsummaryrefslogtreecommitdiffstats
path: root/config.js
blob: 6cafd5451acace206dfeeed1eb8fd409c47a4213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Default config
var config = {
    "base_url": "http://localhost:7060/comments",
    "page_id": "add-page-id-here"
}


// github pages config
if (window.location.href === 'https://danielrholland.github.io/simple-comments-widget/client.html'){
  config = {
    base_url : 'https://comments.dotemgo.com/comments',
    page_id : 'https://danielrholland.github.io/simple-comments-widget/client.html'
  };
}
console.log(window.location.href)