Skip to content

Commit 5a86d76

Browse files
committedFeb 14, 2019
v1.6.17
1 parent 8d1e332 commit 5a86d76

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed
 

‎bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pedicab",
3-
"version": "1.6.16",
3+
"version": "1.6.17",
44
"description": "Rickshaw is a JavaScript toolkit for creating interactive time series graphs.",
55
"main": [
66
"./rickshaw.js",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pedicab",
3-
"version": "1.6.16",
3+
"version": "1.6.17",
44
"homepage": "https://shutterstock.github.io/rickshaw/",
55
"dependencies": {
66
"d3": "^4.7.4"

‎rickshaw.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/* jshint -W079 */
1313

1414
var Rickshaw = {
15-
version: '1.6.16',
15+
version: '1.6.17',
1616

1717
namespace: function(namespace, obj) {
1818
var parts = namespace.split('.')
@@ -1907,7 +1907,6 @@ Rickshaw.Graph.Axis.Y = Rickshaw.Class.create({
19071907
.attr('width', this.width)
19081908
.attr('height', this.height * (1 + this.berthRate))
19091909

1910-
var berth = this.height * this.berthRate
19111910
},
19121911

19131912
render: function() {
@@ -1933,7 +1932,6 @@ Rickshaw.Graph.Axis.Y = Rickshaw.Class.create({
19331932
if (this.tickValues) axis.tickValues(this.tickValues)
19341933

19351934
if (this.orientation == 'left') {
1936-
var berth = this.height * this.berthRate
19371935
var transform = 'translate(' + (this.width - 1) + ')'
19381936
}
19391937

‎rickshaw.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/js/Rickshaw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* jshint -W079 */
22

33
var Rickshaw = {
4-
version: '1.6.16',
4+
version: '1.6.17',
55

66
namespace: function(namespace, obj) {
77
var parts = namespace.split('.')

0 commit comments

Comments
 (0)
Please sign in to comment.