@ -53,7 +53,7 @@ function plugins(editor) {
inlineSources: !halfProduction
}),
replace({
"allowEditor": false,
"allowEditor": editor,
// In dev mode, call `npm run start` once
@ -11,6 +11,11 @@
let hash = window.location.hash.substr(1);
window.onhashchange = () => {
hash = window.location.hash.substr(1);
window.setTimeout(() => window.scrollTo({
top: 0,
left: 0,
behavior: 'smooth'
}), 50)
};
$: selectedTaskId = (/^task\/([^\/]*)/.exec(hash) || [null, null])[1];
</script>
@ -26,11 +26,6 @@ import { taskStatuses } from "./task-status-cache";
function close() {
heightClass = "closed"
}), 100)
location.hash = ""
}