Skip to content

Commit 172ba8d

Browse files
author
Rafael J. Staib
committed
Fix for issue #1
1 parent dbc5dc0 commit 172ba8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

demo/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h1>Basic Demo</h1>
4343
$("#wizard").steps({
4444
headerTag: "h2",
4545
bodyTag: "section",
46-
transitionEffect: 'slideLeft'
46+
transitionEffect: "slideLeft"
4747
});
4848
});
4949
</script>

jquery.steps.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@
495495
**/
496496
function initialize(options)
497497
{
498-
var opts = $.extend({}, $.fn.steps.defaults, options);
498+
var opts = $.extend(true, {}, $.fn.steps.defaults, options);
499499

500500
return this.each(function (i)
501501
{

0 commit comments

Comments
 (0)