1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 08:52:26 +02:00
uBlock/src/asset-viewer.html

36 lines
694 B
HTML
Raw Normal View History

2014-07-09 22:03:25 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2015-03-10 05:00:33 +01:00
<title>uBlock — Asset</title>
<link rel="stylesheet" type="text/css" href="lib/codemirror/lib/codemirror.css">
2014-07-09 22:03:25 +02:00
<style>
body {
border: 0;
height: 100vh;
margin: 0;
padding: 0;
}
2014-07-09 22:03:25 +02:00
#content {
font: 12px monospace;
height: 100%;
2014-07-09 22:03:25 +02:00
white-space: pre;
}
.CodeMirror {
height: 100%;
}
2014-07-09 22:03:25 +02:00
</style>
</head>
<body>
<div id="content"></div>
<script src="lib/codemirror/lib/codemirror.js"></script>
<script src="js/vapi.js"></script>
<script src="js/vapi-common.js"></script>
<script src="js/vapi-client.js"></script>
<script src="js/udom.js"></script>
<script src="js/asset-viewer.js"></script>
2014-07-09 22:03:25 +02:00
</body>
</html>