Skip to content

Commit

Permalink
fix TheGraph undefined error when using SVG images
Browse files Browse the repository at this point in the history
  • Loading branch information
krizka authored Sep 8, 2018
1 parent cb541be commit 090307f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion the-graph/factories.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ exports.createPolygon = function(options) {
};

exports.createImg = function(options) {
return TheGraph.SVGImage(options);
return SVGImage(options);
};

exports.createCanvas = function(options) {
Expand Down

0 comments on commit 090307f

Please sign in to comment.