Created
August 10, 2018 01:40
-
-
Save mbostock/e037a86ce69eb19f629eaebf70ebcd2e to your computer and use it in GitHub Desktop.
Revisions
-
mbostock created this gist
Aug 10, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ <!DOCTYPE html> <style> #test { max-width: 480px; width: 50%; margin: auto; background: #ccc; } </style> <div id="test"></div> <script type="module"> import {Runtime, Inspector, Library} from "https://unpkg.com/@observablehq/notebook-runtime?module"; import notebook from "https://api.observablehq.com/d/bb5d3924d2e12f45.js?key=2e01d2649e1b85fa"; const test = document.querySelector("#test"); const stdlib = new Library; const library = Object.assign({}, stdlib, {width}); function width() { return stdlib.Generators.observe(notify => { let width = notify(test.clientWidth); function resized() { let width1 = test.clientWidth; if (width1 !== width) notify(width = width1); } window.addEventListener("resize", resized); return () => window.removeEventListener("resize", resized); }); } Runtime.load(notebook, library, cell => { if (cell.name === "test") { return new Inspector(test); } }); </script>