mirror of
https://github.com/redmine/redmine.git
synced 2025-11-15 09:46:02 +01:00
Fixed that URL is replaced with "undefined" in IE11 and Edge (#32529).
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@19347 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -412,7 +412,7 @@ function getRemoteTab(name, remote_url, url, load_always) {
|
||||
//replaces current URL with the "href" attribute of the current link
|
||||
//(only triggered if supported by browser)
|
||||
function replaceInHistory(url) {
|
||||
if ("replaceState" in window.history) {
|
||||
if ("replaceState" in window.history && url !== undefined) {
|
||||
window.history.replaceState(null, document.title, url);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user