Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 1 addition & 16 deletions packages/blockly/tests/playground.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,6 @@
addEventHandlers();

document.querySelector('#version').innerText = Blockly.VERSION;

// If we're running locally, display the Advanced Playground link
if (
window.location.href.includes('127.0.0.1') ||
window.location.href.includes('localhost')
) {
document.querySelector('.advancedPlayground').style.display =
'inline';
}
}

/**
Expand Down Expand Up @@ -515,10 +506,6 @@
font-family: monospace;
}

.advancedPlayground {
display: none;
}

.ioLabel > .blocklyFlyoutLabelText {
font-style: italic;
}
Expand Down Expand Up @@ -548,9 +535,7 @@ <h1>Blockly Playground (<span id="version"></span>)</h1>
<p>
<input id="show" type="button" value="Show" /> -
<input id="hide" type="button" value="Hide" /> -
<span class="advancedPlayground"
><a href="playgrounds/advanced_playground.html">Advanced</a> -</span
>
<a href="playgrounds/advanced_playground.html">Advanced</a> -
<a href="playgrounds/web_component.html">Web Component</a> -
<a href="multi_playground.html">Multi Playground</a>
</p>
Expand Down
Loading