Skip to content

Commit

Permalink
Merge branch 'master' of https://code.google.com/p/oppia
Browse files Browse the repository at this point in the history
  • Loading branch information
kojiashida committed Jul 12, 2013
2 parents 5bab75b + 4926bdd commit 27960ca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/dev/head/editor/views/EditorGraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,14 @@ oppia.directive('stateGraphViz', function(explorationData) {
.data(['arrowhead'])
.enter().append('svg:marker')
.attr('id', String)
.attr('viewBox', '0 -5 10 10')
.attr('refX', 25)
.attr('refY', -1.5)
.attr('markerWidth', 3)
.attr('markerHeight', 3)
.attr('viewBox', '0 0 10 10')
.attr('refX', 10)
.attr('refY', 5)
.attr('markerWidth', 6)
.attr('markerHeight', 4.5)
.attr('orient', 'auto')
.append('svg:path')
.attr('d', 'M0,-5L10,0L0,5')
.attr('d', 'M 0 0 L 10 5 L 0 10 z')
.attr('fill', 'black');

var linkEnter = link.enter().append('svg:g')
Expand Down

0 comments on commit 27960ca

Please sign in to comment.