diff options
author | Go MAEDA <maeda@farend.jp> | 2019-07-12 10:42:34 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-07-12 10:42:34 +0000 |
commit | d9215ef09c61a2bf72939ab1219f8ebecbd02968 (patch) | |
tree | cbf85f6c9fd933dc3f156f05bda48b803d11f37e /public | |
parent | a60bac1770eeda7d8cc26bf53c4c86998b1bad54 (diff) | |
download | redmine-d9215ef09c61a2bf72939ab1219f8ebecbd02968.tar.gz redmine-d9215ef09c61a2bf72939ab1219f8ebecbd02968.zip |
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
Diffstat (limited to 'public')
-rw-r--r-- | public/javascripts/application.js | 3 |
1 files changed, 2 insertions, 1 deletions
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(); |