From 0dacb0c9bc9ee0088bd17584e3165bb88bac8ce9 Mon Sep 17 00:00:00 2001 From: "Craig Conover @ PubNub" Date: Tue, 18 Jul 2017 11:40:54 -0700 Subject: [PATCH] missing comma missing comma after sub-key in PubNub init --- examples/multiple.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/multiple.html b/examples/multiple.html index 7d174cd..4a57b89 100644 --- a/examples/multiple.html +++ b/examples/multiple.html @@ -34,7 +34,7 @@ var pn = new PubNub({ publishKey: 'demo', - subscribeKey: 'demo' + subscribeKey: 'demo', ssl: (('https:' == document.location.protocol) ? true : false) });