diff options
| -rw-r--r-- | client.html | 2 | ||||
| -rw-r--r-- | config.js | 12 | ||||
| -rw-r--r-- | index.html | 9 | 
3 files changed, 20 insertions, 3 deletions
| diff --git a/client.html b/client.html index 68c6c90..328a38b 100644 --- a/client.html +++ b/client.html @@ -1,8 +1,6 @@  <!DOCTYPE html>  <html>      <head> -        <!-- usage demo --> -        <meta name="viewport" content="width=device-width, initial-scale=1">          <link rel="stylesheet" href="style.css">      </head>      <body> @@ -1,4 +1,14 @@ -const config = { +// 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' +  }; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..6fad70f --- /dev/null +++ b/index.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> +    <head> +        <meta name="viewport" content="width=device-width, initial-scale=1"> +        <link rel="stylesheet" href="style.css"> +    </head> +    <h1> Comments Demo Page </h1> +    <object width="100%" height="1000vh" type="text/html" data="client.html"></object> +</html> | 
