forked from tools/josh
1
0
Fork 0

Remove all inline styles

This commit is contained in:
Florine W. Dekker 2021-04-24 22:29:23 +02:00
parent 301181c122
commit 8dfcba0be4
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
6 changed files with 33 additions and 21 deletions

View File

@ -16,6 +16,9 @@ module.exports = grunt => {
images: {
files: [{expand: true, cwd: "src/main/", src: ["**/*.{ico,png,svg}"], dest: "dist/", flatten: true}]
},
js: {
files: [{expand: true, cwd: "src/main/", src: ["**/plain.js"], dest: "dist/", flatten: true}]
},
pwa: {
files: [{expand: true, cwd: "src/main/", src: ["manifest.json", "sw.js"], dest: "dist/", flatten: true}]
},
@ -56,6 +59,10 @@ module.exports = grunt => {
files: ["src/main/**/*.html"],
tasks: ["copy:html"],
},
js: {
files: ["src/main/**/*.js"],
tasks: ["copy:js"],
},
ts: {
files: ["src/main/**/*.ts"],
tasks: ["webpack:dev", "replace:dev"],
@ -105,6 +112,7 @@ module.exports = grunt => {
"copy:css",
"copy:html",
"copy:images",
"copy:js",
"copy:pwa",
// Compile
"webpack:dev",
@ -119,6 +127,7 @@ module.exports = grunt => {
"copy:css",
"copy:html",
"copy:images",
"copy:js",
"copy:pwa",
// Compile JS
"webpack:deploy",

View File

@ -1,6 +1,6 @@
{
"name": "fwdekker.com",
"version": "0.40.5",
"version": "0.40.6",
"description": "The source code of [my personal website](https://fwdekker.com/).",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",

View File

@ -40,7 +40,7 @@
-->Please check the <a href="https://www.enable-javascript.com/"><!--
-->instructions how to enable JavaScript in your web browser</a>.<!--
--></noscript><!--
--><div id="ie-warning" style="display:none;"><!--
--><div id="ie-warning" class="hidden"><!--
-->This website does not function with Internet Explorer. <!--
-->Please install a newer browser such as <!--
--><a href="https://www.microsoft.com/en-us/windows/microsoft-edge">Microsoft Edge</a>.<!--
@ -55,19 +55,8 @@
--></div>
</main>
<script>
if (/MSIE|Trident/.test(window.navigator.userAgent)) {
window.onload = function() {
document.getElementById("ie-warning").style.display = "block";
};
}
if ("serviceWorker" in navigator) {
window.addEventListener("load", function() {
return navigator.serviceWorker.register("sw.js?v=%%VERSION_NUMBER%%");
});
}
</script>
<!--suppress HtmlUnknownTarget -->
<script src="plain.js?v=%%VERSION_NUMBER%%"></script>
<script src="https://static.fwdekker.com/lib/template/2.x.x/template.js"></script>
<!--suppress HtmlUnknownTarget -->
<script type="module" src="bundle.js?v=%%VERSION_NUMBER%%"></script>

View File

@ -39,8 +39,8 @@ doAfterLoad(() => {
if (Persistence.getWasUpdated()) {
$("#terminalOutput").innerHTML = "" +
"<span style=\"color:red\">The terminal application has been updated. To prevent unexpected errors, all " +
"previous user changes have been reset.</span>\n\n";
"<span class=\"errorMessage\">The terminal application has been updated. To prevent unexpected errors, " +
"all previous user changes have been reset.</span>\n\n";
Persistence.setWasUpdated(false);
}

11
src/main/js/plain.js Normal file
View File

@ -0,0 +1,11 @@
if (/MSIE|Trident/.test(window.navigator.userAgent)) {
window.onload = function() {
document.getElementById("ie-warning").className = "";
};
}
if ("serviceWorker" in navigator) {
window.addEventListener("load", function() {
return navigator.serviceWorker.register("sw.js?v=%%VERSION_NUMBER%%");
});
}

View File

@ -1,16 +1,19 @@
const CACHE_NAME = "fwdekker-%%VERSION_NUMBER%%";
const CACHE_FILES = [
"bundle.js",
"favicon.ico",
"favicon.png",
"index.html",
"manifest.json",
"main.css",
"favicon.svg",
"icon_128x128.png",
"icon_144x144.png",
"icon_152x152.png",
"icon_192x192.png",
"icon_512x512.png",
"icon_ios.png"
"icon_ios.png",
"index.html",
"main.css",
"manifest.json",
"plain.js",
];
self.addEventListener("install", event =>