Skip to content

Commit 0aadad0

Browse files
committed
pass data arg to step finish callback in merlin
1 parent 1fdc4af commit 0aadad0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Merlin2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ define(['jquery', 'NIseed'], function($) {
169169
}
170170
}
171171
if ($.isFunction(internal.current_step.finish)) {
172-
if (internal.current_step.finish.apply(internal.current_step, [self]) === false) {
172+
if (internal.current_step.finish.apply(internal.current_step, [self, data]) === false) {
173173
return false;
174174
}
175175
}

0 commit comments

Comments
 (0)