diff --git a/spike/review/reinvent/ezmded/ui/index.html b/spike/review/reinvent/ezmded/ui/index.html
index 3c90d8f..4329431 100644
--- a/spike/review/reinvent/ezmded/ui/index.html
+++ b/spike/review/reinvent/ezmded/ui/index.html
@@ -27,7 +27,7 @@
#tree summary > div > a {
flex-grow: 1;
}
- #tree summary > div > a > input {
+ #tree summary > div > input:first-child {
width: 100%;
text-align: left;
}
@@ -91,8 +91,9 @@
pids = pids.slice(0, pids.length-1)
var titlePath = "/"
- for (var pid in pids)
- titlePath += ` /`
+ for (var pid in pids) {
+ titlePath += ` /`
+ }
document.getElementById("titlePath").innerHTML = titlePath
document.getElementById("title").innerHTML = title
@@ -100,6 +101,7 @@
easyMDE.meta = {
id: id,
}
+ window.location.hash = "#?f="+id
}
function drawTree() {
function htmlifyBranch(id, branch) {
@@ -110,7 +112,7 @@