Remove inline styles

This commit is contained in:
Florine W. Dekker 2021-04-28 12:35:38 +02:00
parent f2559fd008
commit e4862b60ad
Signed by: FWDekker
GPG Key ID: 78B3EAF58145AF25
5 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2018 Felix W. Dekker
Copyright (c) 2018 F.W. Dekker
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,8 +1,8 @@
{
"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",
"author": "F.W. Dekker",
"browser": "dist/bundle.js",
"repository": {
"type": "git",
@ -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

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="author" content="F.W. Dekker" />
<meta name="application-name" content="Dice probabilities" />
<meta name="description" content="Calculates the probability of rolling a value given a combination of dice." />
<meta name="theme-color" content="#0033cc" />
@ -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");
});