This repository has been archived by the owner on Aug 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vincent Gabriel
authored and
Vincent Gabriel
committed
Jan 18, 2016
1 parent
a8e972a
commit b0d1827
Showing
5 changed files
with
147 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "twitter-bootstrap-wizard", | ||
"version": "1.3", | ||
"version": "1.3.2", | ||
"ignore": [ | ||
"**/.*", | ||
"examples", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Basic Example</title> | ||
<!-- Bootstrap --> | ||
<link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="../prettify.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class='container'> | ||
|
||
<section id="wizard"> | ||
<div class="page-header"> | ||
<h1>Basic Wizard</h1> | ||
</div> | ||
|
||
<div id="rootwizard"> | ||
<div class="navbar"> | ||
<div class="navbar-inner"> | ||
<div class="container"> | ||
<ul> | ||
<li><a href="#tab1" data-toggle="tab">First</a></li> | ||
<li><a href="#tab2" data-toggle="tab">Second</a></li> | ||
<li><a href="#tab3" data-toggle="tab">Third</a></li> | ||
<li class="hidden"><a href="#tab8" data-toggle="tab">Hidden</a></li> | ||
<li><a href="#tab4" data-toggle="tab">Fourth</a></li> | ||
<li><a href="#tab5" data-toggle="tab">Fifth</a></li> | ||
<li><a href="#tab6" data-toggle="tab">Sixth</a></li> | ||
<li><a href="#tab7" data-toggle="tab">Seventh</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="tab-content"> | ||
<div class="tab-pane" id="tab1"> | ||
1 | ||
</div> | ||
<div class="tab-pane" id="tab2"> | ||
2 | ||
</div> | ||
<div class="tab-pane" id="tab3"> | ||
3 | ||
</div> | ||
<div class="tab-pane" id="tab4"> | ||
4 | ||
</div> | ||
<div class="tab-pane" id="tab5"> | ||
5 | ||
</div> | ||
<div class="tab-pane" id="tab6"> | ||
6 | ||
</div> | ||
<div class="tab-pane" id="tab7"> | ||
7 | ||
</div> | ||
<div class="tab-pane" id="tab8"> | ||
8 | ||
</div> | ||
<ul class="pager wizard"> | ||
<li class="previous first" style="display:none;"><a href="#">First</a></li> | ||
<li class="previous"><a href="#">Previous</a></li> | ||
<li class="next last" style="display:none;"><a href="#">Last</a></li> | ||
<li class="next"><a href="#">Next</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<h3>HTML</h3> | ||
<pre class="prettyprint linenums"> | ||
<div id="rootwizard"> | ||
<div class="navbar"> | ||
<div class="navbar-inner"> | ||
<div class="container"> | ||
<ul> | ||
<li><a href="#tab1" data-toggle="tab">First</a></li> | ||
<li><a href="#tab2" data-toggle="tab">Second</a></li> | ||
<li><a href="#tab3" data-toggle="tab">Third</a></li> | ||
<li class="hidden"><a href="#tab8" data-toggle="tab">Hidden</a></li> | ||
<li><a href="#tab4" data-toggle="tab">Forth</a></li> | ||
<li><a href="#tab5" data-toggle="tab">Fifth</a></li> | ||
<li><a href="#tab6" data-toggle="tab">Sixth</a></li> | ||
<li><a href="#tab7" data-toggle="tab">Seventh</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="tab-content"> | ||
<div class="tab-pane" id="tab1"> | ||
1 | ||
</div> | ||
<div class="tab-pane" id="tab2"> | ||
2 | ||
</div> | ||
<div class="tab-pane" id="tab3"> | ||
3 | ||
</div> | ||
<div class="tab-pane" id="tab4"> | ||
4 | ||
</div> | ||
<div class="tab-pane" id="tab5"> | ||
5 | ||
</div> | ||
<div class="tab-pane" id="tab6"> | ||
6 | ||
</div> | ||
<div class="tab-pane" id="tab7"> | ||
7 | ||
</div> | ||
<div class="tab-pane" id="tab8"> | ||
8 | ||
</div> | ||
<ul class="pager wizard"> | ||
<li class="previous first" style="display:none;"><a href="#">First</a></li> | ||
<li class="previous"><a href="#">Previous</a></li> | ||
<li class="next last" style="display:none;"><a href="#">Last</a></li> | ||
<li class="next"><a href="#">Next</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</pre> | ||
|
||
<h3>JS</h3> | ||
<pre class="prettyprint linenums"> | ||
$(document).ready(function() { | ||
$('#rootwizard').bootstrapWizard({withVisible: false}); | ||
}); | ||
</pre> | ||
|
||
</section> | ||
</div> | ||
<script src="http://code.jquery.com/jquery-latest.js"></script> | ||
<script src="../bootstrap/js/bootstrap.min.js"></script> | ||
<script src="../jquery.bootstrap.wizard.js"></script> | ||
<script src="../prettify.js"></script> | ||
<script> | ||
$(document).ready(function() { | ||
$('#rootwizard').bootstrapWizard({withVisible: false}); | ||
window.prettyPrint && prettyPrint() | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.