Skip to content

Commit

Permalink
Release version 0.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teamdandelion committed Jun 25, 2014
1 parent 76c7b68 commit fbe8040
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plottable",
"description": "A library for creating charts out of D3",
"version": "0.18.1",
"version": "0.18.2",
"main": ["plottable.js", "plottable.css"],
"license": "MIT",
"ignore": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plottable.js",
"version": "0.18.1",
"version": "0.18.2",
"description": "Build flexible, performant, interactive charts using D3",
"repository": {
"type": "git",
Expand Down
6 changes: 4 additions & 2 deletions plottable.js
Original file line number Diff line number Diff line change
Expand Up @@ -6627,16 +6627,18 @@ var Plottable;
* @returns {AreaInteraction} The calling AreaInteraction.
*/
DragBox.prototype.clearBox = function () {
if (this.dragBox == null)
if (this.dragBox == null) {
return;
}
this.dragBox.attr("height", 0).attr("width", 0);
this.boxIsDrawn = false;
return this;
};

DragBox.prototype.setBox = function (x0, x1, y0, y1) {
if (this.dragBox == null)
if (this.dragBox == null) {
return;
}
var w = Math.abs(x0 - x1);
var h = Math.abs(y0 - y1);
var xo = Math.min(x0, x1);
Expand Down
8 changes: 4 additions & 4 deletions plottable.min.js

Large diffs are not rendered by default.

Binary file modified plottable.zip
Binary file not shown.

0 comments on commit fbe8040

Please sign in to comment.