mirror of
https://github.com/ExactTarget/fuelux.git
synced 2026-04-26 03:00:10 -04:00
Clean up wizard example indents
This commit is contained in:
@@ -22,4 +22,4 @@
|
||||
<h4>Design Template</h4>
|
||||
<p>Nori grape silver beet broccoli kombu beet greens fava bean potato quandong celery. Bunya nuts black-eyed pea prairie turnip leek lentil turnip greens parsnip. Sea lettuce lettuce water chestnut eggplant winter purslane fennel azuki bean earthnut pea sierra leone bologi leek soko chicory celtuce parsley jÃcama salsify. </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -104,35 +104,29 @@
|
||||
|
||||
<dt id="wizard-usage-methods-selectedItem">.wizard('selectedItem')</dt>
|
||||
<dd>Returns the current step index.
|
||||
{% highlight js %}
|
||||
$('#myWizard').wizard('selectedItem');
|
||||
{% endhighlight %}
|
||||
{% highlight js %}$('#myWizard').wizard('selectedItem');{% endhighlight %}
|
||||
</dd>
|
||||
|
||||
<dt id="wizard-usage-methods-selectedItem">.wizard('selectedItem', 3)</dt>
|
||||
<dd>Moves to passed in step. This can be either an integer or the `data-name` of a step.
|
||||
{% highlight js %}
|
||||
$('#myWizard').wizard('selectedItem', {
|
||||
step: 3
|
||||
});
|
||||
{% highlight js %}$('#myWizard').wizard('selectedItem', {
|
||||
step: 3
|
||||
});
|
||||
|
||||
$('#myWizard').wizard('selectedItem', {
|
||||
step: "named item"
|
||||
});
|
||||
{% endhighlight %}
|
||||
$('#myWizard').wizard('selectedItem', {
|
||||
step: "named item"
|
||||
});{% endhighlight %}
|
||||
</dd>
|
||||
|
||||
<dt id="wizard-usage-methods-addSteps">.wizard('addSteps')</dt>
|
||||
<dd>Add a pane or an array of panes to a wizard. Wrap this markup with <code><div class="step-pane"></div></code>
|
||||
{% highlight js %}
|
||||
$('#myWizard').wizard('addSteps', index, [
|
||||
{
|
||||
badge: 'badge-customicon',
|
||||
label: 'A Step Label',
|
||||
pane: '<div>Content</div>'
|
||||
}
|
||||
]);
|
||||
{% endhighlight %}
|
||||
{% highlight js %}$('#myWizard').wizard('addSteps', index, [
|
||||
{
|
||||
badge: 'badge-customicon',
|
||||
label: 'A Step Label',
|
||||
pane: '<div>Content</div>'
|
||||
}
|
||||
]);{% endhighlight %}
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
@@ -163,9 +157,7 @@
|
||||
|
||||
<dt id="wizard-usage-methods-removeSteps">.wizard('removeSteps')</dt>
|
||||
<dd>Remove a pane or multiple panes from a wizard
|
||||
{% highlight js %}
|
||||
$('#myWizard').wizard('removeSteps', index, howMany);
|
||||
{% endhighlight %}
|
||||
{% highlight js %}$('#myWizard').wizard('removeSteps', index, howMany);{% endhighlight %}
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-striped">
|
||||
|
||||
Reference in New Issue
Block a user