- From: Marcos Cáceres <notifications@github.com>
- Date: Tue, 02 Jun 2020 22:17:09 -0700
- To: w3c/editing <editing@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 3 June 2020 05:17:21 UTC
@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