🔥 remove unused themeing for shared process

This commit is contained in:
Joao Moreno
2017-03-07 09:48:55 +01:00
parent d68457bc4f
commit 76cc8b5220

View File

@@ -6,23 +6,7 @@
<meta charset="utf-8" />
</head>
<body class="monaco-shell vs-dark" aria-label="">
<script>
(function () {
try {
window.location.search.substring(1).split('&').forEach(p => {
var kv = p.split('=');
if (kv[0] === 'config' && kv[1]) {
let config = JSON.parse(decodeURIComponent(kv[1]));
window.document.body.className = 'monaco-shell ' + config.baseTheme;
}
});
} catch (error) {
console.error(error);
}
})();
</script>
<body aria-label="">
Shared Process
</body>