Files
EasySoft-ZenTaoPMS/module/design/js/browse.js
T
2022-07-29 13:17:34 +08:00

16 lines
523 B
JavaScript

$(function()
{
$('#subNavbar .nav li').removeClass('active');
$('#subNavbar .nav li[data-id=' + type + ']').addClass('active');
$('#subNavbar .nav li > a').each(function()
{
var type = $(this).parent().attr('data-id');
if(type == 'bysearch') return;
type = type == 'all' ? type : type.toUpperCase();
var href = createLink('design', 'browse', 'projectID=' + projectID + '&productID=' + productID + '&type=' + type);
$(this).attr('href', href);
});
})