Skip to content

Commit

Permalink
artifacts for #800
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonwoodhull committed Jan 12, 2015
1 parent 19579c4 commit bd1c01b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions dc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* dc 2.0.0-alpha.5
* dc 2.0.0-beta.1
* http://dc-js.github.io/dc.js/
* Copyright 2012 Nick Zhu and other contributors
*
Expand All @@ -20,7 +20,7 @@
'use strict';

/**
#### Version 2.0.0-alpha.5
#### Version 2.0.0-beta.1
The entire dc.js library is scoped under the **dc** name space. It does not introduce anything else
into the global name space.
#### Function Chaining
Expand All @@ -41,7 +41,7 @@ that are chainable d3 objects.)
/*jshint -W062*/
/*jshint -W079*/
var dc = {
version: '2.0.0-alpha.5',
version: '2.0.0-beta.1',
constants: {
CHART_CLASS: 'dc-chart',
DEBUG_GROUP_CLASS: 'debug',
Expand Down Expand Up @@ -959,7 +959,7 @@ dc.baseMixin = function (_chart) {
if (a && a.replace) {
return a.replace('#', '');
}
return '' + _chart.chartID();
return 'dc-chart' + _chart.chartID();
};

/**
Expand Down
2 changes: 1 addition & 1 deletion dc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dc.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dc",
"version": "2.0.0-alpha.5",
"version": "2.0.0-beta.1",
"license": "Apache-2.0",
"copyright": "2014",
"description": "A multi-dimensional charting library built to work natively with crossfilter and rendered using d3.js ",
Expand Down
2 changes: 1 addition & 1 deletion regression/rendered-stock-fixture.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h2>dc.js - Dimensional Charting Javascript Library</h2>
</p>

<h4>Version Status</h4>
<p>This page is running version: v<span id="version">2.0.0-alpha.5</span>. The latest stable version is 1.7.2.</p>
<p>This page is running version: v<span id="version">2.0.0-beta.1</span>. The latest stable version is 1.7.2.</p>

<h4>Getting Started</h4>
<p>
Expand Down
2 changes: 1 addition & 1 deletion web/docs/api-latest.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* [Heat Map](#heat-map)
* [Box Plot](#box-plot)

#### Version 2.0.0-alpha.5
#### Version 2.0.0-beta.1
The entire dc.js library is scoped under the **dc** name space. It does not introduce anything else
into the global name space.
#### Function Chaining
Expand Down
2 changes: 1 addition & 1 deletion web/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ <h1 id="dc-api">DC API</h1>
<li><a href="#heat-map">Heat Map</a></li>
<li><a href="#box-plot">Box Plot</a></li>
</ul>
<h4 id="version-2-0-0-alpha-5">Version 2.0.0-alpha.5</h4>
<h4 id="version-2-0-0-beta-1">Version 2.0.0-beta.1</h4>
<p>The entire dc.js library is scoped under the <strong>dc</strong> name space. It does not introduce anything else
into the global name space.</p>
<h4 id="function-chaining">Function Chaining</h4>
Expand Down
8 changes: 4 additions & 4 deletions web/js/dc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* dc 2.0.0-alpha.5
* dc 2.0.0-beta.1
* http://dc-js.github.io/dc.js/
* Copyright 2012 Nick Zhu and other contributors
*
Expand All @@ -20,7 +20,7 @@
'use strict';

/**
#### Version 2.0.0-alpha.5
#### Version 2.0.0-beta.1
The entire dc.js library is scoped under the **dc** name space. It does not introduce anything else
into the global name space.
#### Function Chaining
Expand All @@ -41,7 +41,7 @@ that are chainable d3 objects.)
/*jshint -W062*/
/*jshint -W079*/
var dc = {
version: '2.0.0-alpha.5',
version: '2.0.0-beta.1',
constants: {
CHART_CLASS: 'dc-chart',
DEBUG_GROUP_CLASS: 'debug',
Expand Down Expand Up @@ -959,7 +959,7 @@ dc.baseMixin = function (_chart) {
if (a && a.replace) {
return a.replace('#', '');
}
return '' + _chart.chartID();
return 'dc-chart' + _chart.chartID();
};

/**
Expand Down

0 comments on commit bd1c01b

Please sign in to comment.