Skip to content

Commit

Permalink
Merge pull request #40 from dboone/named-transitions
Browse files Browse the repository at this point in the history
Use named transitions for commit circles
  • Loading branch information
onlywei committed Dec 22, 2015
2 parents 4ed70f2 + e5990f6 commit f29b993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/historyview.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ define(['d3'], function () {
})
.call(fixCirclePosition)
.attr('r', 1)
.transition()
.transition("inflate")
.duration(500)
.attr('r', this.commitRadius);

Expand Down
2 changes: 1 addition & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if (!Array.prototype.indexOf) {

require.config({
paths: {
'd3': 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.0.8/d3.min'
'd3': 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.12/d3.min'
},
shim: {
'd3': {
Expand Down

0 comments on commit f29b993

Please sign in to comment.