mirror of
https://github.com/redmine/redmine.git
synced 2025-11-14 09:16:02 +01:00
Load changesets and time entries tabs async (#3058).
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@18275 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -385,6 +385,24 @@ function showIssueHistory(journal, url) {
|
||||
return false;
|
||||
}
|
||||
|
||||
function getRemoteTab(name, remote_url, url) {
|
||||
$('#tab-content-' + name).parent().find('.tab-content').hide();
|
||||
$('#tab-content-' + name).parent().find('div.tabs a').removeClass('selected');
|
||||
$('#tab-' + name).addClass('selected')
|
||||
|
||||
replaceInHistory(url)
|
||||
|
||||
$.ajax({
|
||||
url: remote_url,
|
||||
type: 'get',
|
||||
success: function(data){
|
||||
$('#tab-content-' + name).html(data).show();
|
||||
}
|
||||
});
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
//replaces current URL with the "href" attribute of the current link
|
||||
//(only triggered if supported by browser)
|
||||
function replaceInHistory(url) {
|
||||
|
||||
Reference in New Issue
Block a user