mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-28 18:45:49 -05:00
Allow loading URLs from links
This commit is contained in:
parent
83f2b0fa7e
commit
06e031cdc8
2 changed files with 11 additions and 5 deletions
|
@ -52,7 +52,7 @@
|
||||||
<p><a href="">What is a ScratchX URL?</a></p>
|
<p><a href="">What is a ScratchX URL?</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<form class="input-plus-button" data-action="load-url">
|
<form class="input-plus-button url-load-form">
|
||||||
<input type="text" placeholder="paste url..." />
|
<input type="text" placeholder="paste url..." />
|
||||||
<button type="submit">Open</button>
|
<button type="submit">Open</button>
|
||||||
</form>
|
</form>
|
||||||
|
@ -66,15 +66,15 @@
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="">
|
<li><a href="?url=./scratch_extensions/picoExtension.js" data-action="load-url">
|
||||||
<h3>Extension 1</h3>
|
<h3>Extension 1</h3>
|
||||||
<p>Extension 1 description</p>
|
<p>Extension 1 description</p>
|
||||||
</a></li>
|
</a></li>
|
||||||
<li><a href="">
|
<li><a href="?url=./scratch_extensions/picoExtension.js" data-action="load-url">
|
||||||
<h3>Extension 2</h3>
|
<h3>Extension 2</h3>
|
||||||
<p>Extension 2 description</p>
|
<p>Extension 2 description</p>
|
||||||
</a></li>
|
</a></li>
|
||||||
<li><a href="">
|
<li><a href="?url=./scratch_extensions/picoExtension.js" data-action="load-url">
|
||||||
<h3>Extension 3</h3>
|
<h3>Extension 3</h3>
|
||||||
<p>Extension 3 description</p>
|
<p>Extension 3 description</p>
|
||||||
</a></li>
|
</a></li>
|
||||||
|
|
|
@ -139,7 +139,13 @@ function sendURLtoFlash(url) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$("[data-action='load-url']").submit(function(e) {
|
$("[data-action='load-url']").click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
showPage("editor");
|
||||||
|
sendURLtoFlash($(this).attr("href"));
|
||||||
|
});
|
||||||
|
|
||||||
|
$(".url-load-form").submit(function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
showPage("editor");
|
showPage("editor");
|
||||||
sendURLtoFlash($('input[type="text"]', this).val());
|
sendURLtoFlash($('input[type="text"]', this).val());
|
||||||
|
|
Loading…
Reference in a new issue