diff --git a/themes/bootstrap3/js/record.js b/themes/bootstrap3/js/record.js index 5507934e7b86011ab661b44814350497b4d508a0..faa28dfe56512ed72e0292bcf8ac742639ef7548 100644 --- a/themes/bootstrap3/js/record.js +++ b/themes/bootstrap3/js/record.js @@ -151,12 +151,12 @@ function registerTabEvents() { function ajaxLoadTab(tabid) { var id = $('.hiddenId')[0].value; // Grab the part of the url that is the Controller and Record ID - var urlroot = document.URL.match(new RegExp('/[^/]+/'+id)) + "/"; + var urlroot = document.URL.match(new RegExp('/[^/]+/'+id)); if(urlroot == "null/") { return true; } $.ajax({ - url: path + urlroot + 'AjaxTab', + url: path + urlroot + '/AjaxTab', type: 'POST', data: {tab: tabid}, success: function(data) {