We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048e90e commit 6f8e136Copy full SHA for 6f8e136
resources/dist.rc
87 Bytes
src/celemod-ui/build.js
@@ -61,7 +61,7 @@ const postBuildAction = () => {
61
if (file.endsWith('.html')) {
62
let html = fs.readFileSync(`./dist/${file}`, 'utf8');
63
const sciterSpecific = fs.readFileSync('./src/sciter-specific.js', 'utf-8');
64
- html = html.replace(`"padding for sciter-specific.js"`,
+ html = html.replace(`padding("padding for sciter-specific.js")`,
65
`</script><script type="module">${sciterSpecific}`
66
);
67
fs.writeFileSync(`./dist/${file}`, html, 'utf8');
src/celemod-ui/src/index.html
@@ -9,7 +9,7 @@
9
</head>
10
11
<script>
12
- "padding for sciter-specific.js"
+ padding("padding for sciter-specific.js")
13
</script>
14
15
<body>
0 commit comments