Remove inline styles

This commit is contained in:
Florine W. Dekker 2021-04-28 12:35:38 +02:00
parent f2559fd008
commit 3db19f4f64
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
4 changed files with 8 additions and 8 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "dice",
"version": "1.0.14",
"version": "1.0.15",
"description": "Calculates the probability of rolling a value given a combination of dice.",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",
@ -16,10 +16,10 @@
"deploy": "grunt deploy"
},
"dependencies": {
"chart.js": "^3.1.1"
"chart.js": "^3.2.0"
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt": "^1.4.0",
"grunt-cli": "^1.4.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
@ -27,7 +27,7 @@
"grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^4.0.3",
"webpack": "^5.33.2",
"webpack": "^5.36.0",
"webpack-cli": "^4.6.0"
}
}

View File

@ -19,13 +19,13 @@
<noscript>
<img src="https://stats.fwdekker.com/count?p=/tools/dice/" alt="Counting pixel" />
<p style="color: red; font-weight: bold;">
<p>
This website does not function if JavaScript is disabled.
Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>.
</p>
</noscript>
<main style="display: none;">
<main class="hidden">
<div id="nav"></div>
<div id="contents">
<div id="header"></div>

View File

@ -1,5 +1,5 @@
// noinspection JSUnresolvedVariable
const {$, doAfterLoad, footer, header, nav, showPage} = window.fwdekker;
const {$, doAfterLoad, footer, header, nav} = window.fwdekker;
import {Chart, CategoryScale, Filler, LineController, LineElement, LinearScale, PointElement, Tooltip} from "chart.js"
Chart.register(CategoryScale, Filler, LineController, LineElement, LinearScale, PointElement, Tooltip);
@ -55,7 +55,7 @@ doAfterLoad(() => {
vcsURL: "https://git.fwdekker.com/FWDekker/dice/",
version: "v%%VERSION_NUMBER%%"
}));
showPage();
$("main").classList.remove("hidden");
});