Skip to content

Commit

Permalink
Animation Under All Tabs are Working
Browse files Browse the repository at this point in the history
Highlighting animation are working
under all tabs on navigation
between different tabs.

Fixes #295
  • Loading branch information
AkshJain99 committed Dec 17, 2018
1 parent 2759b0f commit 0eebd10
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion partials/tabs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,4 @@ <h2 class="fine center">about</h2>
$('ul.tabs').tabs();
});

</script>
</script>
6 changes: 6 additions & 0 deletions partials/tabs/coalaonline.html
Original file line number Diff line number Diff line change
Expand Up @@ -274,3 +274,9 @@ <h6 class="uppercase"><strong><span class="lowercase">c</span>OAFILE</strong></h
</div>
</div>
</div>
<script>
$(document).ready(function(){
$('ul.tabs').tabs();
});

</script>
6 changes: 6 additions & 0 deletions partials/tabs/getinvolved.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,9 @@ <h4 class="light center">We’d love to share a bar of chocolate with you!
</div>
</div>
</section>
<script>
$(document).ready(function(){
$('ul.tabs').tabs();
});

</script>
6 changes: 6 additions & 0 deletions partials/tabs/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,9 @@ <h2 class="fine">get started</div>
</div>
</div>
</section>
<script>
$(document).ready(function(){
$('ul.tabs').tabs();
});

</script>
3 changes: 2 additions & 1 deletion partials/tabs/languages.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@

<script>
$(document).ready(function () {
$('ul.tabs').tabs();
$('.modal').modal({
dismissible: true, // Modal can be dismissed by clicking outside of the modal
opacity: 0.8, // Opacity of modal background
Expand All @@ -219,4 +220,4 @@
$('.tooltipped').tooltip({delay: 50});

})
</script>
</script>

0 comments on commit 0eebd10

Please sign in to comment.