Skip to content

Commit f29b993

Browse files
committed
Merge pull request #40 from dboone/named-transitions
Use named transitions for commit circles
2 parents 4ed70f2 + e5990f6 commit f29b993

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/historyview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ define(['d3'], function () {
488488
})
489489
.call(fixCirclePosition)
490490
.attr('r', 1)
491-
.transition()
491+
.transition("inflate")
492492
.duration(500)
493493
.attr('r', this.commitRadius);
494494

js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if (!Array.prototype.indexOf) {
4545

4646
require.config({
4747
paths: {
48-
'd3': 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.0.8/d3.min'
48+
'd3': 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.12/d3.min'
4949
},
5050
shim: {
5151
'd3': {

0 commit comments

Comments
 (0)