mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-24 16:48:07 -05:00
Open the editor when loading from URL params
This commit is contained in:
parent
f12635d2b3
commit
70a5f49d9d
1 changed files with 2 additions and 0 deletions
|
@ -158,10 +158,12 @@ function sendURLtoFlash() {
|
|||
if (urls.length <= 0) return;
|
||||
if (Scratch.FlashApp.ASobj.ASloadGithubURL !== undefined) {
|
||||
$(document).trigger("editor:extensionLoaded", {method: "url", urls: urls});
|
||||
showPage(editorId);
|
||||
Scratch.FlashApp.ASobj.ASloadGithubURL(urls);
|
||||
} else {
|
||||
$(document).on("editor:ready", function(e) {
|
||||
$(document).trigger("editor:extensionLoaded", {method: "url", urls: urls});
|
||||
showPage(editorId);
|
||||
Scratch.FlashApp.ASobj.ASloadGithubURL(urls);
|
||||
$(this).off(e);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue