Skip to content

Commit

Permalink
responsive and display issue on manager. tabs styling and functionali…
Browse files Browse the repository at this point in the history
…ty added
  • Loading branch information
JamesDurhamm committed Mar 25, 2019
1 parent ef78750 commit 401e252
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 7 deletions.
11 changes: 11 additions & 0 deletions dist/packages/manager/Resources/manager.js
@@ -0,0 +1,11 @@
$(document).ready(function(){

$('.tabButtons li').removeClass('current').first().addClass('current');
$('.tabs .tab').removeClass('current').first().addClass('current');

$('.tabButtons li').on('click',function(){
var clickedIndex = $(this).index();
$('.tabButtons li').removeClass('current').eq(clickedIndex).addClass('current');
$('.tabs .tab').removeClass('current').eq(clickedIndex).addClass('current');
});
});
2 changes: 1 addition & 1 deletion dist/twist/Core/Resources/manager/css/twistmanager.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 401e252

Please sign in to comment.