Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Pull code from remote source #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
faraazahmad authored Oct 16, 2023
commit 0ad152a4900a3161aef9d77b12fbe64c5ba016b3
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Promise.all([
// dang huge (> 40Mb). In the meantime the textarea that is holding the place
// of the actual functional one is just going to display "Loading...".
import("./createRuby").then(({ default: createRuby }) => createRuby())
]).then(([editor, mermaid, ruby]) => {
]).then(async ([editor, mermaid, ruby]) => {
// First, grab a reference to the output element so that we can update it.
// Then, set it initially to the output represented by the source.
const output = document.getElementById("output");
Expand Down