Skip to content

Commit 6f8e136

Browse files
fix: fix padding
1 parent 048e90e commit 6f8e136

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

resources/dist.rc

87 Bytes
Binary file not shown.

src/celemod-ui/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const postBuildAction = () => {
6161
if (file.endsWith('.html')) {
6262
let html = fs.readFileSync(`./dist/${file}`, 'utf8');
6363
const sciterSpecific = fs.readFileSync('./src/sciter-specific.js', 'utf-8');
64-
html = html.replace(`"padding for sciter-specific.js"`,
64+
html = html.replace(`padding("padding for sciter-specific.js")`,
6565
`</script><script type="module">${sciterSpecific}`
6666
);
6767
fs.writeFileSync(`./dist/${file}`, html, 'utf8');

src/celemod-ui/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</head>
1010

1111
<script>
12-
"padding for sciter-specific.js"
12+
padding("padding for sciter-specific.js")
1313
</script>
1414

1515
<body>

0 commit comments

Comments
 (0)