Merge branch 'hotfix/v0.2.6' into develop
commit
57d51378a3
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## next release (0.3.0)
|
## next release (0.3.0)
|
||||||
- Update R and Python virtual environments
|
- Update R and Python virtual environments
|
||||||
|
## v0.2.6
|
||||||
|
- Fix old versions banner on nested pages
|
||||||
## v0.2.5
|
## v0.2.5
|
||||||
- Fix docs deploy typo
|
- Fix docs deploy typo
|
||||||
## v0.2.4
|
## v0.2.4
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
window.addEventListener("DOMContentLoaded", function() {
|
window.addEventListener("DOMContentLoaded", function() {
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.open("GET", window.location + "../versions.json");
|
xhr.open("GET", window.location.origin + "/versions.json");
|
||||||
xhr.onload = function() {
|
xhr.onload = function() {
|
||||||
var versions = JSON.parse(this.responseText);
|
var versions = JSON.parse(this.responseText);
|
||||||
latest_version = ""
|
latest_version = ""
|
||||||
|
|
Loading…
Reference in New Issue