1
0
Fork 0
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:
Afterster 2014-01-29 22:23:56 +01:00
parent a45a1479ad
commit 24895f24f7
6 changed files with 90 additions and 13 deletions

View file

@ -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() {