diff --git a/bower.json b/bower.json index c213038..1bc08df 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "eon-chart", - "version": "0.4.2", + "version": "0.4.3", "homepage": "https://github.com/pubnub/eon-chart", "authors": [ "Ian Jennings " diff --git a/examples/simple.html b/examples/simple.html index e25b64f..54cc8cb 100644 --- a/examples/simple.html +++ b/examples/simple.html @@ -1,14 +1,8 @@ - - - - - - - - + + diff --git a/examples/transform.html b/examples/transform.html index c208782..2875782 100644 --- a/examples/transform.html +++ b/examples/transform.html @@ -1,13 +1,8 @@ - - - - - - - + + @@ -16,7 +11,8 @@ // using the example stream from // http://www.pubnub.com/developers/data-streams/sensor-network var pubnub = PUBNUB.init({ - subscribe_key: 'sub-c-2a73818c-d2d3-11e3-9244-02ee2ddab7fe' + subscribe_key: 'sub-c-2a73818c-d2d3-11e3-9244-02ee2ddab7fe', + ssl: true }); eon.chart({ pubnub: pubnub, @@ -24,6 +20,7 @@ channel: 'pubnub-sensor-network', flow: true, limit: 30, + ssl: true, x_id: 'timestamp', x_type: 'custom', debug: true, diff --git a/pubnub-c3.js b/pubnub-c3.js index 6599e4c..12f6864 100644 --- a/pubnub-c3.js +++ b/pubnub-c3.js @@ -257,8 +257,6 @@ eon.c = { var flowLength = 0; var storeData = function(data) { - console.log('!!!!! STOREDATA') - object.json.push(data); if(object.json.length > options.limit) { @@ -298,9 +296,6 @@ eon.c = { } else { if(fobject.json.length) { - - console.log('fobject length', fobject.json.length) - console.log('flowLength', flowLength) fobject.length = flowLength;