We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We had this built in, but it's essentially defunct.
The text was updated successfully, but these errors were encountered:
Now revived, but there are issues
In PublishedDashboard.init(), the following code is now added:
PublishedDashboard.init()
if (url) { const valid = await this.loadDashboardFromURL(url); if (!valid) { this._initURLPrompt_(url); } } else { this._initURLPrompt_(null); }
And _initUrlPrompt_ is:
_initUrlPrompt_
_initURLPrompt_ (url, message) { if (message) { $world.inform(message); } const loadDialog = part(LoadDialog); loadDialog.init(this, url); loadDialog.openInWorld(); }
See:
$world.execCommand("open browser", {moduleName: "publication/dashboard.js", packageName: "galyleo-dashboard", });
LoadDialog and LoadDialogMorph are in dashboard.cp.js, but the bindings to the button events seem non-functional. @merryman, can you take a look?
LoadDialog
LoadDialogMorph
dashboard.cp.js
$world.execCommand("open browser", {moduleName: "studio/dashboard.cp.js", packageName: "galyleo-dashboard", codeEntity: "LoadDialog"});
Sorry, something went wrong.
rickmcgeer
merryman
No branches or pull requests
We had this built in, but it's essentially defunct.
The text was updated successfully, but these errors were encountered: