Имеется нода (страна). В ней горизонтальные табы (сводка, инфо, виза, и т.д.). Как сделать, чтоб все табы были ссылками? Сейчас любая таба идет ссылкой, что и нода, то есть я не могу с одной вкладки сослаться на другую..
может решение где то в horizontal-tabs.js в
if (!tab_focus) {
// If the current URL has a fragment and one of the tabs contains an
// element that matches the URL fragment, activate that tab.
if (window.location.hash && $(window.location.hash, this).length) {
tab_focus = $(window.location.hash, this).closest('.horizontal-tabs-pane');
}
else {
tab_focus = $('> .horizontal-tabs-pane:first', this);
}
}
if (tab_focus.length) {
tab_focus.data('horizontalTab').focus();