Skip to content

Instantly share code, notes, and snippets.

@ederign
Created February 9, 2021 22:29
Show Gist options
  • Save ederign/88e3ddb31c2c1374a0afc6bfede80258 to your computer and use it in GitHub Desktop.
Save ederign/88e3ddb31c2c1374a0afc6bfede80258 to your computer and use it in GitHub Desktop.
dmn-standalone.js
const editor = DmnEditor.open({
container: document.getElementById("dmn-editor-container"),
initialContent: Promise.resolve(""),
readOnly: false,
origin: "",
resources: new Map([
[
"MyIncludedModel.dmn",
{
contentType: "text",
content: Promise.resolve("")
}
]
])
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment