Skip to content

Commit

Permalink
Merge pull request #16 from romanbsd/patch-1
Browse files Browse the repository at this point in the history
Remove redundant quote which was preventing buttons.cancelHide from worki
  • Loading branch information
dominicbarnes committed Sep 1, 2011
2 parents 384e3e8 + 29febe0 commit 1096b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.jWizard.js
Expand Up @@ -666,7 +666,7 @@
var self = this,
options = this.options.buttons,
$footer = $("<div />", { "class": "jw-footer ui-widget-header ui-corner-bottom" }),
$cancel = $('<button type="' + options.cancelType + '" class="ui-state-default ui-corner-all jw-button-cancel jw-priority-secondary"' + (options.cancelHide ? " ui-helper-hidden" : "") + '">' + options.cancelText + '</button>'),
$cancel = $('<button type="' + options.cancelType + '" class="ui-state-default ui-corner-all jw-button-cancel jw-priority-secondary' + (options.cancelHide ? " ui-helper-hidden" : "") + '">' + options.cancelText + '</button>'),
$previous = $('<button type="button" class="ui-state-default ui-corner-all jw-button-previous">' + options.previousText + '</button>'),
$next = $('<button type="button" class="ui-state-default ui-corner-all jw-button-next">' + options.nextText + '</button>'),
$finish = $('<button type="' + options.finishType + '" class="ui-state-default ui-corner-all jw-button-finish ui-state-highlight">' + options.finishText + '</button>');
Expand Down

0 comments on commit 1096b1b

Please sign in to comment.