From 94c2356f383000cea42072a94b351f79ff4567d4 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Thu, 20 Jun 2019 07:12:30 +0000 Subject: 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 --- public/javascripts/application.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'public/javascripts') diff --git a/public/javascripts/application.js b/public/javascripts/application.js index eac6df7d3..edb419be1 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -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) { -- cgit v1.2.3