Update URL when changing tab (#13900).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11765 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Baptiste Barth
2013-05-02 16:09:58 +00:00
parent 8aa1bdc031
commit 501007f01d
2 changed files with 7 additions and 2 deletions

View File

@@ -290,11 +290,16 @@ function submit_query_form(id) {
$('#'+id).submit();
}
function showTab(name) {
function showTab(name, url) {
$('div#content .tab-content').hide();
$('div.tabs a').removeClass('selected');
$('#tab-content-' + name).show();
$('#tab-' + name).addClass('selected');
//replaces current URL with the "href" attribute of the current link
//(only triggered if supported by browser)
if ("replaceState" in window.history) {
window.history.replaceState(null, document.title, url);
}
return false;
}