Skip to content

Commit

Permalink
Merge pull request #9 from evancz/patch-2
Browse files Browse the repository at this point in the history
Bug fix: Event returns Selection module
  • Loading branch information
seliopou committed May 22, 2014
2 parents 7a51a35 + a3d3c13 commit ef1157d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Native/D3/Event.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Elm.Native.D3.Event.make = function(elm) {
elm.Native.D3 = elm.Native.D3 || {};
elm.Native.D3.Event = elm.Native.D3.Event || {};

if (elm.Native.D3.Selection.values) return elm.Native.D3.Selection.values;
if (elm.Native.D3.Event.values) return elm.Native.D3.Event.values;

var JS = Elm.Native.D3.JavaScript.make(elm);

Expand Down

0 comments on commit ef1157d

Please sign in to comment.