blob: 2290a3a56498e9d7b4b8147a61563f925b671df4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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'
};
}
|