Skip to content
Snippets Groups Projects
Commit 10589d54 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Clicking the active record tab in Bootstrap 3 will reload the page to that tab.

parent 2a91d674
No related merge requests found
...@@ -185,6 +185,10 @@ $(document).ready(function(){ ...@@ -185,6 +185,10 @@ $(document).ready(function(){
registerTabEvents(); registerTabEvents();
$('ul.recordTabs a').click(function (e) { $('ul.recordTabs a').click(function (e) {
if($(this).parents('li.active').length > 0) {
window.location.href = $(this).attr('href');
return;
}
var tabid = $(this).attr('id').toLowerCase(); var tabid = $(this).attr('id').toLowerCase();
if($('#'+tabid+'-tab').length > 0) { if($('#'+tabid+'-tab').length > 0) {
$('#record-tabs .tab-pane.active').removeClass('active'); $('#record-tabs .tab-pane.active').removeClass('active');
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment