A few small design updates

A squash of commits:
- a8f0ba120e
  Attribution
- 8de1094002
  Don't show URL until link is clicked
- 29023c59c5
  Improved toolbar look a bit
gh-pages
Hauke D 7 years ago
parent 2e57c3c787
commit d00888fdc0

@ -57,6 +57,9 @@ the "View Source" function of your browser to view it, or have a look at
target="_blank">the project sources on GitHub</a>. target="_blank">the project sources on GitHub</a>.
</p> </p>
<!-- Thank you to LanX from PerlMonks for the inspiration! :-)
https://www.perlmonks.org/?node_id=1223812 -->
<!-- First, you have to include the following hidden IFrame, which <!-- First, you have to include the following hidden IFrame, which
loads the "Perl runner". This is (currently) necessary because this loads the "Perl runner". This is (currently) necessary because this
IFrame needs to re-load itself in order to re-run Perl. This IFrame IFrame needs to re-load itself in order to re-run Perl. This IFrame

@ -358,6 +358,9 @@ $(function () {
$('#showtools').text( $('#thetools').is(':visible') $('#showtools').text( $('#thetools').is(':visible')
? 'Hide Tools' : 'Show Tools' ); ? 'Hide Tools' : 'Show Tools' );
}); });
$('#webperllink').click(function () {
$('#webperlurl').show();
});
// script // script
var addscript = $('#addscript'); var addscript = $('#addscript');
@ -373,7 +376,7 @@ $(function () {
} }
else else
addscript.show(); addscript.show();
addscript.click(function () { $('#addscript .fakelink').click(function () {
addscript.hide(); addscript.hide();
if ($('#script').length) return; if ($('#script').length) return;
var cfn = makeCodeWithFn('script.pl', $('#perlctrl'), 0, 1); var cfn = makeCodeWithFn('script.pl', $('#perlctrl'), 0, 1);
@ -519,15 +522,17 @@ $(function () {
<div id="misctools"> <div id="misctools">
<span id="showtools" class="fakelink">Show Tools</span> <span id="showtools" class="fakelink">Show Tools</span>
<span id="thetools" style="display:none;"> <span id="thetools" style="display:none;">
&ensp;
<span id="addscript" class="fakelink" style="display:none;">Add Script</span>
&nbsp; &nbsp;
<span id="addscript" style="display:none;">&bull;
<span class="fakelink">Add Script</span>
</span>
&bull;
<span id="addinput" class="fakelink">Add Input File</span> <span id="addinput" class="fakelink">Add Input File</span>
&nbsp; &bull;
<span id="addoutput" class="fakelink">Add Output File</span> <span id="addoutput" class="fakelink">Add Output File</span>
&nbsp; &bull;
<span id="mergestdoe" class="fakelink">Merge STDOUT+ERR</span> <span id="mergestdoe" class="fakelink">Merge STDOUT+ERR</span>
&nbsp; &bull;
<span id="copyurl" class="fakelink">Copy URL</span> <span id="copyurl" class="fakelink">Copy URL</span>
/ <span id="copyjson" class="fakelink">JSON</span> / <span id="copyjson" class="fakelink">JSON</span>
(<span id="autorunstate">with</span> (<span id="autorunstate">with</span>
@ -538,9 +543,9 @@ $(function () {
</div> </div>
<div class="text" id="footer" style="display:none;"> <div class="text" id="footer" style="display:none;">
Powered by <a href="http://webperl.zero-g.net/" target="_blank">&#x1F578;&#xFE0F;&#x1F42A; WebPerl</a> (beta) Powered by <a href="http://webperl.zero-g.net/" target="_blank" id="webperllink">&#x1F578;&#xFE0F;&#x1F42A; WebPerl</a> (beta)
<!-- Link with target="_blank" may not work in a sandboxed iframe, so provide URL: --> <!-- Link with target="_blank" may not work in a sandboxed iframe, so provide URL: -->
&nbsp; <code>http://webperl.zero-g.net/</code> <span id="webperlurl" style="display:none;">&nbsp; <code>http://webperl.zero-g.net/</code></span>
</div> </div>
</body> </body>

Loading…
Cancel
Save