Skip to content
Snippets Groups Projects
Commit 1e44b3d5 authored by khawkins98's avatar khawkins98
Browse files

Load test message on wwwdev

parent 09e28e28
No related branches found
No related tags found
No related merge requests found
......@@ -413,19 +413,25 @@ function ebiFrameworkIncludeAnnouncements() {
banner.appendChild(wrapper);
}
function loadRemote(file) {
function loadRemoteAnnouncements(file) {
if (window.XMLHttpRequest) {
xmlhttp=new XMLHttpRequest();
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
eval(xmlhttp.responseText);
detectAnnouncements(m)
detectAnnouncements(m);
}
}
xmlhttp.open("GET", file, false);
xmlhttp.send();
}
loadRemote('https://dev.ebi.emblstatic.net/announcements.js');
if (window.location.hostname.indexOf('wwwdev.') === 0) {
// Load test message on wwwdev
loadRemoteAnnouncements('https://dev.ebi.emblstatic.net/announcements.js');
} else {
loadRemoteAnnouncements('https://ebi.emblstatic.net/announcements.js');
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment