Remove usage of deprecated function

This commit is contained in:
Florine W. Dekker 2021-04-28 13:16:00 +02:00
parent 5dad0d583c
commit 26bad7b2fc
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
5 changed files with 12 additions and 12 deletions

View File

@ -8,7 +8,7 @@ module.exports = grunt => {
},
copy: {
html: {
files: [{expand: true, cwd: "src/main/", src: "**/*.html", dest: "dist/", "flatten": true}],
files: [{expand: true, cwd: "src/main/", src: "**/*.html", dest: "dist/", flatten: true}],
},
},
focus: {
@ -18,7 +18,7 @@ module.exports = grunt => {
},
replace: {
dev: {
src: ["./dist/*.html", "./dist/*.js"],
src: ["./dist/**/*.html", "./dist/**/*.js"],
replacements: [
{
from: "%%VERSION_NUMBER%%",
@ -28,7 +28,7 @@ module.exports = grunt => {
overwrite: true,
},
deploy: {
src: ["./dist/*.html", "./dist/*.js"],
src: ["./dist/**/*.html", "./dist/**/*.js"],
replacements: [
{
from: "%%VERSION_NUMBER%%",

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "simplify-fractions",
"version": "1.2.4",
"version": "1.2.5",
"description": "Simple web tool for simplifying fractions",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",
@ -16,12 +16,12 @@
"deploy": "grunt deploy"
},
"dependencies": {
"katex": "^0.13.2"
"katex": "^0.13.3"
},
"devDependencies": {
"css-loader": "^5.2.2",
"css-loader": "^5.2.4",
"file-loader": "^6.2.0",
"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",
@ -30,7 +30,7 @@
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^4.0.3",
"style-loader": "^2.0.0",
"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/simplify-fractions/" 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 katex from "katex";
import "katex/dist/katex.min.css";
@ -108,7 +108,7 @@ doAfterLoad(() => {
vcsURL: "https://git.fwdekker.com/FWDekker/simplify-fractions/",
version: "v%%VERSION_NUMBER%%"
}));
showPage();
$("main").classList.remove("hidden");
});
doAfterLoad(() => {