Skip to content

Commit 8e323c3

Browse files
committed
Remove return statement from the public destroy method
1 parent bbe27d6 commit 8e323c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/publics.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $.fn.steps.destroy = function ()
4747
{
4848
var options = getOptions(this);
4949

50-
return destroy(this, options);
50+
destroy(this, options);
5151
};
5252

5353
/**
@@ -185,4 +185,4 @@ $.fn.steps.setStep = function (index, step)
185185
$.fn.steps.skip = function (count)
186186
{
187187
throw new Error("Not yet implemented!");
188-
};
188+
};

0 commit comments

Comments
 (0)