From 8de1094002a8e0da652d1fe0c9550fce4edd55fe Mon Sep 17 00:00:00 2001 From: Hauke D Date: Fri, 19 Oct 2018 20:05:01 +0200 Subject: [PATCH] Don't show URL until link is clicked Depending on whether the editor is sandboxed or not, the link may or may not work. --- web/democode/perleditor.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/web/democode/perleditor.html b/web/democode/perleditor.html index a129d6f..06b91a6 100644 --- a/web/democode/perleditor.html +++ b/web/democode/perleditor.html @@ -356,6 +356,9 @@ $(function () { $('#showtools').text( $('#thetools').is(':visible') ? 'Hide Tools' : 'Show Tools' ); }); + $('#webperllink').click(function () { + $('#webperlurl').show(); + }); // script var addscript = $('#addscript'); @@ -536,9 +539,9 @@ $(function () {