- From: Marcos Cáceres <notifications@github.com>
- Date: Mon, 28 Jan 2019 20:06:55 -0800
- To: w3c/screen-orientation <screen-orientation@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 29 January 2019 04:07:17 UTC
marcoscaceres approved this pull request. I think there might still be a tiny bug in the button. See suggestion. The other examples seem fine. I think we should let Example 1 "cook" 🥘 for a bit... I'm still seeing places were we could make a few tweaks. I'd like to come back and revise it a bit later in the internship. However, we got more fun/pressing things to focus on :) > + const { type, angle } = screen.orientation; + console.log(`Orientation type is ${type} & angle is ${angle}.`); + } + + screen.orientation.addEventListener("change", () => { + show(); + updateDetails(document.getElementById("button")); + }); + + window.addEventListener("load", () => { + show(); + updateDetails(document.getElementById("button")); + }); + </script> + + <button onclick="rotate() id="button"> Note that this was still buggy... missing closing quote and we should pass in this. ```suggestion <button onclick="rotate(this)" id="button"> ``` -- 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/screen-orientation/pull/137#pullrequestreview-196294743
Received on Tuesday, 29 January 2019 04:07:17 UTC