Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Animation Under All Tabs are Working #296

Merged
merged 1 commit into from
Jan 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion partials/tabs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,4 @@ <h2 class="fine center">about</h2>
$(document).ready(function(){
$('ul.tabs').tabs();
});

</script>
5 changes: 5 additions & 0 deletions partials/tabs/coalaonline.html
Original file line number Diff line number Diff line change
Expand Up @@ -274,3 +274,8 @@ <h6 class="uppercase"><strong><span class="lowercase">c</span>OAFILE</strong></h
</div>
</div>
</div>
<script>
$(document).ready(function(){
$('ul.tabs').tabs();
});
</script>
5 changes: 5 additions & 0 deletions partials/tabs/getinvolved.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,8 @@ <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>
5 changes: 5 additions & 0 deletions partials/tabs/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,8 @@ <h2 class="fine">get started</div>
</div>
</div>
</section>
<script>
$(document).ready(function(){
$('ul.tabs').tabs();
});
</script>
1 change: 1 addition & 0 deletions 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 Down