This repository was archived by the owner on Aug 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
63 lines (59 loc) · 2.75 KB
/
Copy patheditor.html
File metadata and controls
63 lines (59 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google" value="notranslate">
<meta name="description" content="A little Scratch Mod :D" />
<title>CattyMod Editor</title>
<link rel="apple-touch-icon" href="images/apple-icon.png">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="manifest" href="manifest.webmanifest">
<style>
#splash {
position: absolute; width: 100%; height: 100%; top: 0; left: 0;
display: flex; align-items: center; justify-content: center;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; color: #ff4c4c;
}
.tw-loaded #splash, #splash-content { display: none; }
#splash[splash-theme="dark"] { background-color: #333; color: #fff; }
#splash-spinner:after {
content: " "; display: block; width: 64px; height: 64px;
border-radius: 50%; border: 6px solid; border-color: currentColor transparent currentColor transparent;
animation: splash-spinner 1.2s linear infinite;
}
@keyframes splash-spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<link rel="dns-prefetch" href="https://trampoline.turbowarp.org/">
<link rel="dns-prefetch" href="https://projects.scratch.mit.edu/">
<link rel="dns-prefetch" href="https://assets.scratch.mit.edu/">
</head>
<body>
<div id="splash" aria-hidden="true">
<noscript>
<h1>Enable JavaScript</h1>
</noscript>
<div id="splash-content">
<div id="splash-spinner"></div>
</div>
</div>
<script>
(function() {
document.querySelector('#splash-content').style.display = 'block';
try {var localTheme = localStorage.getItem('tw:theme');} catch (e) {}
if (localTheme ? localTheme === 'dark' : window.matchMedia('(prefers-color-scheme: dark)').matches) document.querySelector('#splash').setAttribute('splash-theme', 'dark');
})();
</script>
<div id="app"></div>
<script src="js/vendors~addon-settings~credits~editor~embed~fullscreen~player.js"></script><script src="js/vendors~editor~embed~fullscreen~player.js"></script><script src="js/addon-settings~addons~editor~fullscreen~player.js"></script><script src="js/editor~embed~fullscreen~player.js"></script><script src="js/editor.js"></script></body>
<script src="scrooch3/changeButton.js"></script>
<script src="scrooch3/cookieTheme.js"></script>
<script src="scrooch3/home.js"></script>
<script src="scrooch3/default.js"></script>
<script src="scrooch3/checkStop.js"></script>
<script src="scrooch3/tip.js"></script>
<script src="scrooch3/tidyui.js"></script>
</html>