Skip to content

Commit

Permalink
update built libs
Browse files Browse the repository at this point in the history
  • Loading branch information
dchester committed Dec 14, 2014
1 parent 8d68744 commit 7f80d3f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rickshaw",
"version": "1.4.6",
"version": "1.5.1",
"homepage": "http://code.shutterstock.com/rickshaw/",
"dependencies": {
"d3": "~3.3.6"
Expand Down
7 changes: 4 additions & 3 deletions rickshaw.js
Original file line number Diff line number Diff line change
Expand Up @@ -1931,6 +1931,8 @@ Rickshaw.Graph.Behavior.Series.Toggle = function(args) {
line.element.classList.add('disabled');
}

self.graph.update();

}.bind(this);

var label = line.element.getElementsByTagName('span')[0];
Expand Down Expand Up @@ -1976,6 +1978,8 @@ Rickshaw.Graph.Behavior.Series.Toggle = function(args) {

}

self.graph.update();

};

};
Expand Down Expand Up @@ -2017,12 +2021,10 @@ Rickshaw.Graph.Behavior.Series.Toggle = function(args) {
}

s.disabled = true;
self.graph.update();
};

s.enable = function() {
s.disabled = false;
self.graph.update();
};
} );
};
Expand Down Expand Up @@ -3759,7 +3761,6 @@ Rickshaw.Graph.Smoother = Rickshaw.Class.create({
max: 100,
slide: function( event, ui ) {
self.setScale(ui.value);
self.graph.update();
}
} );
} );
Expand Down

0 comments on commit 7f80d3f

Please sign in to comment.