From d9215ef09c61a2bf72939ab1219f8ebecbd02968 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 12 Jul 2019 10:42:34 +0000 Subject: [PATCH] Fix the compatibility problem with Internet Explorer 11 (#3058). Patch by Yuichi HARADA. git-svn-id: http://svn.redmine.org/redmine/trunk@18328 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/javascripts/application.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/javascripts/application.js b/public/javascripts/application.js index 7a2805d97..019b45dc4 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -385,7 +385,8 @@ function showIssueHistory(journal, url) { return false; } -function getRemoteTab(name, remote_url, url, load_always = false) { +function getRemoteTab(name, remote_url, url, load_always) { + load_always = load_always || false; var tab_content = $('#tab-content-' + name); tab_content.parent().find('.tab-content').hide();