Skip to content

Commit

Permalink
bump bower v
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjennings committed Oct 5, 2015
1 parent 468900c commit e025f00
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 22 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"
Expand Down
10 changes: 2 additions & 8 deletions examples/simple.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
<html>
<head>

<link rel="stylesheet" type="text/css" href="../bower_components/c3/c3.min.css">
<script src="../bower_components/pubnub/web/pubnub.min.js"></script>
<script src="../bower_components/d3/d3.min.js"></script>
<script src="../bower_components/c3/c3.min.js"></script>
<script src="../bower_components/subsub/subsub.js"></script>
<script src="../bower_components/visibilityjs/lib/visibility.core.js"></script>
<script src="../pubnub-c3.js"></script>

<script type="text/javascript" src="http://pubnub.github.io/eon/v/eon/0.0.9/eon.js"></script>
<link type="text/css" rel="stylesheet" href="http://pubnub.github.io/eon/v/eon/0.0.9/eon.css" />

</head>
<body>
Expand Down
13 changes: 5 additions & 8 deletions examples/transform.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
<html>
<head>

<link rel="stylesheet" type="text/css" href="../bower_components/c3/c3.min.css">
<script src="../bower_components/pubnub/web/pubnub.min.js"></script>
<script src="../bower_components/d3/d3.min.js"></script>
<script src="../bower_components/c3/c3.min.js"></script>
<script src="../bower_components/subsub/subsub.js"></script>
<script src="../bower_components/visibilityjs/lib/visibility.core.js"></script>
<script src="../pubnub-c3.js"></script>
<script type="text/javascript" src="http://pubnub.github.io/eon/v/eon/0.0.9/eon.js"></script>
<link type="text/css" rel="stylesheet" href="http://pubnub.github.io/eon/v/eon/0.0.9/eon.css" />

</head>
<body>
Expand All @@ -16,14 +11,16 @@
// 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,
history: false,
channel: 'pubnub-sensor-network',
flow: true,
limit: 30,
ssl: true,
x_id: 'timestamp',
x_type: 'custom',
debug: true,
Expand Down
5 changes: 0 additions & 5 deletions pubnub-c3.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit e025f00

Please sign in to comment.