Skip to content

Commit

Permalink
remove gh-pages content
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjennings committed Jun 1, 2015
1 parent 7c2098f commit 3660b48
Show file tree
Hide file tree
Showing 262 changed files with 79 additions and 57,577 deletions.
Binary file modified .DS_Store
Binary file not shown.
14 changes: 14 additions & 0 deletions _layouts/demo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>

<title>{{page.title}} - EON Realtime Dashboards</title>

<script type="text/javascript" src="../../lib/eon.js"></script>
<link type="text/css" rel="stylesheet" href="../../lib/eon.css" />

</head>
<body>
{{ content }}
</body>
</html>
98 changes: 50 additions & 48 deletions _site/examples/chart/bar.html
Original file line number Diff line number Diff line change
@@ -1,60 +1,62 @@
<html>
<!DOCTYPE html>
<html lang="en">
<head>

<title>EON Bar Chart - EON Realtime Dashboards</title>

<script type="text/javascript" src="../../lib/eon.js"></script>
<link type="text/css" rel="stylesheet" href="../../lib/eon.css" />

<style>
.c3-region-1 {
fill: #dd3333;
fill-opacity: 0.8
}
</style>

</head>
<body>
<div id="chart"></div>
<script>
var channel = "c3-bar" + Math.random();
eon.chart({
channel: channel,
generate: {
bindto: '#chart',
data: {
labels: true,
type: 'bar'
},
bar: {
width: {
ratio: 0.5
}
},
tooltip: {
show: false
}
<style>
.c3-region-1 {
fill: #dd3333;
fill-opacity: 0.8
}
</style>
<div id="chart"></div>
<script>
var channel = "c3-bar" + Math.random();
eon.chart({
channel: channel,
generate: {
bindto: '#chart',
data: {
labels: true,
type: 'bar'
},
bar: {
width: {
ratio: 0.5
}
});
</script>
<script>
var pubnub2 = PUBNUB.init({
publish_key: 'demo',
subscribe_key: 'demo'
});
setInterval(function(){
},
tooltip: {
show: false
}
}
});
</script>
<script>
var pubnub2 = PUBNUB.init({
publish_key: 'demo',
subscribe_key: 'demo'
});
setInterval(function(){

pubnub2.publish({
channel: channel,
message: {
columns: [
['Austin', Math.floor(Math.random() * 99)],
['New York', Math.floor(Math.random() * 99)],
['San Francisco', Math.floor(Math.random() * 99)],
['Portland', Math.floor(Math.random() * 99)]
]
}
});
pubnub2.publish({
channel: channel,
message: {
columns: [
['Austin', Math.floor(Math.random() * 99)],
['New York', Math.floor(Math.random() * 99)],
['San Francisco', Math.floor(Math.random() * 99)],
['Portland', Math.floor(Math.random() * 99)]
]
}
});

}, 1000);
</script>
}, 1000);
</script>
</body>
</html>
11 changes: 2 additions & 9 deletions _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ <h1 class="logo">
<li><a href="./examples/chart/bar.html">Bar</a></li>
<li><a href="./examples/chart/donut.html">Donut</a></li>
<li><a href="./examples/chart/gauge.html">Gauge</a></li>
<li><a href="./examples/chart/transform.html">Transform</a></li>
</ul>
</li><!--//dropdown-->
<li class="nav-item dropdown">
Expand All @@ -86,13 +85,7 @@ <h1 class="logo">
</div><!--//container-->
</header><!--//header-->

<!--
edit apache config to embed this package within pubnub.com
search for github
http://www.pubnub.com/developers/bitcoin/
https://github.com/pubnub/pubnub-web/blob/master/config/common-apache.conf#L35
-->
<style type="text/css">
<style type="text/css">
body {
background-color: #efefef;
}
Expand Down Expand Up @@ -280,7 +273,7 @@ <h4>Embed chart.</h4>
<pre><code class="javascript">eon.chart({
channel: 'eon-chart',
limit: 20,
history: true,
flow: true,
generate: {
bindto: '#body-spline'
}
Expand Down
11 changes: 6 additions & 5 deletions _site/lib/eon-chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -7223,11 +7223,12 @@ eon.c = {
}

options.channel = options.channel || false;
options.generate = options.generate || {
data: {
options.generate = options.generate || {};
if(!options.generate.data) {
options.generate.data = {
columns: null
}
};
};
}
options.flow = options.flow || false;
if(options.flow) {
options.flow = {};
Expand Down Expand Up @@ -7419,7 +7420,7 @@ eon.c = {
delete self.chart;
};

var boot = function(){
var boot = function() {

options.generate.data.columns = dataStore;

Expand Down
11 changes: 6 additions & 5 deletions _site/lib/eon.js
Original file line number Diff line number Diff line change
Expand Up @@ -7223,11 +7223,12 @@ eon.c = {
}

options.channel = options.channel || false;
options.generate = options.generate || {
data: {
options.generate = options.generate || {};
if(!options.generate.data) {
options.generate.data = {
columns: null
}
};
};
}
options.flow = options.flow || false;
if(options.flow) {
options.flow = {};
Expand Down Expand Up @@ -7419,7 +7420,7 @@ eon.c = {
delete self.chart;
};

var boot = function(){
var boot = function() {

options.generate.data.columns = dataStore;

Expand Down
2 changes: 1 addition & 1 deletion _site/src/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"pubnub": "3.7.8",
"eon-map": "~0.2.2",
"c3": "0.4.9",
"eon-chart": "~0.2.10"
"eon-chart": "~0.2.11"
},
"resolutions": {
"d3": "~3.5.5",
Expand Down
Binary file added examples/.DS_Store
Binary file not shown.
Binary file added examples/chart/.DS_Store
Binary file not shown.
60 changes: 0 additions & 60 deletions examples/chart/bar.html

This file was deleted.

52 changes: 0 additions & 52 deletions examples/chart/donut.html

This file was deleted.

51 changes: 0 additions & 51 deletions examples/chart/gauge.html

This file was deleted.

Loading

0 comments on commit 3660b48

Please sign in to comment.