Skip to content
This repository has been archived by the owner on Jul 13, 2024. It is now read-only.

Add commit object to the mouseEventOptions object #214

Merged
merged 1 commit into from
Dec 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/gitgraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,8 @@
author: commit.author,
message: commit.message,
date: commit.date,
sha1: commit.sha1
sha1: commit.sha1,
commit: commit
};

_emitEvent(self.canvas, "commit:" + event, mouseEventOptions);
Expand Down