Skip to content

Commit

Permalink
Create a new release 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
heavysixer committed Aug 6, 2014
1 parent d4cedd9 commit 17f8e6f
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "d4",
"description": "A friendly charting DSL for D3",
"main": "d4.js",
"version": "0.8.8",
"version": "0.8.9",
"dependencies": {
"d3": "~3.4.4"
},
Expand Down
12 changes: 6 additions & 6 deletions d4.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! d4 - v0.8.8
/*! d4 - v0.8.9
* License: MIT Expat
* Date: 2014-08-06
* Copyright: Mark Daggett, D4 Team
Expand Down Expand Up @@ -201,7 +201,7 @@
* chart.builder(function() {
* return {
* link: function(chart, data) {
* console.log(chart.x.domain.$dirty) // false;
* // false;
* }
* }
* });
Expand Down Expand Up @@ -465,8 +465,8 @@
var name = mixin.name;
var overrides = extractOverrides.bind(this)(mixin, name);
var baseFeature = {
accessors : {
afterRender: function(){},
accessors: {
afterRender: function() {},
},
proxies: []
};
Expand Down Expand Up @@ -632,7 +632,7 @@
* .mixout('yAxis');
*
* // Now test that the feature has been removed.
* console.log(chart.features());
*
* // => ["bars", "barLabels", "xAxis"]
*
* @return {Array} An array of features.
Expand Down Expand Up @@ -711,7 +711,7 @@
* .mixout('yAxis');
*
* // Now test that the feature has been removed.
* console.log(chart.features());
*
* => ["bars", "barLabels", "xAxis"]
*
* @param {String} name - accessor name for chart feature.
Expand Down
8 changes: 4 additions & 4 deletions d4.min.js

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": "d4",
"version": "0.8.8",
"version": "0.8.9",
"description": "A friendly reusable chart DSL for D3",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,8 @@
var name = mixin.name;
var overrides = extractOverrides.bind(this)(mixin, name);
var baseFeature = {
accessors : {
afterRender: function(){},
accessors: {
afterRender: function() {},
},
proxies: []
};
Expand Down
6 changes: 3 additions & 3 deletions test/lib/d4.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! d4 - v0.8.8
/*! d4 - v0.8.9
* License: MIT Expat
* Date: 2014-08-06
* Copyright: Mark Daggett, D4 Team
Expand Down Expand Up @@ -465,8 +465,8 @@
var name = mixin.name;
var overrides = extractOverrides.bind(this)(mixin, name);
var baseFeature = {
accessors : {
afterRender: function(){},
accessors: {
afterRender: function() {},
},
proxies: []
};
Expand Down

0 comments on commit 17f8e6f

Please sign in to comment.