Re: [w3c/editing] Readd links to moved files (#262)

@marcoscaceres commented on this pull request.



> @@ -0,0 +1,6 @@
+<!doctype html>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0; url=https://w3c.github.io/editing/docs/contentEditableDisabled.html">

I'd suggest doing this instead for each of them: 

```suggestion
<script>
    let currentHash = window.location.hash;
    let newLocation = "https://w3c.github.io/editing/docs/contentEditableDisabled.html" + currentHash;
    window.location = newLocation;
</script>
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/editing/pull/262#pullrequestreview-423224062

Received on Wednesday, 3 June 2020 05:17:21 UTC