Created
August 14, 2018 14:16
-
-
Save mbostock/2d60f87a292ddfa61e6389ea638c70b8 to your computer and use it in GitHub Desktop.
Override cells
This file contains 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 characters
<!DOCTYPE html> | |
<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/f523a66288d9ab04.js?key=e76719d4648ff9ff"; | |
const test = document.querySelector("#test"); | |
const main = { | |
id: "main", | |
modules: [ | |
{ | |
id: "main", | |
variables: notebook.modules[0].variables.map(v => { | |
return v.name === "subject" | |
? Object.assign(v, {value: "Success"}) | |
: v; | |
}) | |
} | |
] | |
}; | |
Runtime.load(main, cell => { | |
if (cell.name === "greeting") { | |
return new Inspector(test); | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment