4 lines
81 B
JavaScript
4 lines
81 B
JavaScript
|
|
function setDisplayURL(newURL) {
|
||
|
|
window.history.pushState(null, '', newURL);
|
||
|
|
}
|