From 851c9dc3b060f62acdb1d158bfb8dc4e561a73d9 Mon Sep 17 00:00:00 2001 From: Ivan Bessarabov Date: Sun, 22 Sep 2019 16:19:45 +0300 Subject: [PATCH] Added missing comma to the snippet code in README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 30092aaa..d89447ef 100644 --- a/README.md +++ b/README.md @@ -370,12 +370,12 @@ Add this snippet to the bottom of web page: var remark_config = { host: "REMARK_URL", // hostname of remark server, same as REMARK_URL in backend config, e.g. "https://demo.remark42.com" site_id: 'YOUR_SITE_ID', - components: ['embed'] // optional param; which components to load. default to ["embed"] - // to load all components define components as ['embed', 'last-comments', 'counter'] - // available component are: - // - 'embed': basic comments widget - // - 'last-comments': last comments widget, see `Last Comments` section below - // - 'counter': counter widget, see `Counter` section below + components: ['embed'], // optional param; which components to load. default to ["embed"] + // to load all components define components as ['embed', 'last-comments', 'counter'] + // available component are: + // - 'embed': basic comments widget + // - 'last-comments': last comments widget, see `Last Comments` section below + // - 'counter': counter widget, see `Counter` section below url: 'PAGE_URL', // optional param; if it isn't defined // `window.location.origin + window.location.pathname` will be used, //