mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 09:49:30 +02:00
Add artist information tabs (fix #126)
This commit is contained in:
parent
a45a1479ad
commit
24895f24f7
6 changed files with 90 additions and 13 deletions
|
@ -19,6 +19,16 @@
|
|||
//
|
||||
$(document).ready(function () {
|
||||
$('.default_hidden').hide();
|
||||
|
||||
$("#tabs li").click(function() {
|
||||
$("#tabs li").removeClass('tab_active');
|
||||
$(this).addClass("tab_active");
|
||||
$(".tab_content").hide();
|
||||
var selected_tab = $(this).find("a").attr("href");
|
||||
$(selected_tab).fadeIn();
|
||||
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
$(function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue