We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047fbd7 commit d5918b4Copy full SHA for d5918b4
index.html
@@ -141,7 +141,12 @@ <h2>Rotation</h2>
141
<article id="controls">
142
<h2>Controls</h2>
143
<pre data-language="javascript">
144
-$('.tabs').tabslet();
+$('.tabs').tabslet({
145
+ controls: {
146
+ prev: '.prev',
147
+ next: '.next'
148
+ }
149
+});
150
</pre>
151
<div class='tabs tabs_controls'>
152
<a class="prev">previous</a>
javascripts/initializers.js
@@ -22,10 +22,7 @@ $(document).ready(function() {
22
delay: 6000
23
});
24
25
- $('.tabs_controls').tabslet({
26
- autorotate: true,
27
- delay: 6000
28
- });
+ $('.tabs_controls').tabslet();
29
30
$('.before_event').tabslet();
31
$('.before_event').on("_before", function() {
0 commit comments