mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-25 15:38:56 +00:00
Still experimenting with using appcache to limit access to network requests. When it works, it works well, but the big issue is when users sign in, the browser doesn't always get the right cache manifest delivered, so the network blocking gets in a mess.
27 lines
442 B
HTML
27 lines
442 B
HTML
<!doctype html>
|
|
<html>
|
|
<meta charset=utf-8>
|
|
<title>JS Bin Runner</title>
|
|
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: transparent;
|
|
}
|
|
iframe {
|
|
border: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<div id="sandbox-wrapper"></div>
|
|
<script src="https://rem.jsbin-dev.com/js/prod/runner-3.40.3.min.js"></script>
|
|
|
|
|