more oml to statusbar

This commit is contained in:
Jan Gerber 2015-12-14 20:29:03 +01:00
commit 2abe2154be
26 changed files with 954 additions and 892 deletions

View file

@ -1,24 +0,0 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Open Media Library</title>
</head>
<body>
<script>
function load() {
var base = 'http://127.0.0.1:9841';
var xhr = new XMLHttpRequest();
xhr.onload = function() {
document.location.href = base;
};
xhr.onerror = function() {
setTimeout(load, 1000);
}
xhr.open('get', base + '/status');
xhr.send();
}
load();
</script>
</body>
</html>