Created
February 9, 2021 22:29
-
-
Save ederign/88e3ddb31c2c1374a0afc6bfede80258 to your computer and use it in GitHub Desktop.
dmn-standalone.js
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 characters
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