Skip to content

Commit

Permalink
Merge pull request #426 from Deltares/feat/favicon
Browse files Browse the repository at this point in the history
new favicon
  • Loading branch information
Remcoman authored Oct 23, 2023
2 parents 88cc5dc + c83c883 commit 3ec25b9
Show file tree
Hide file tree
Showing 8 changed files with 463 additions and 953 deletions.
13 changes: 12 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,20 @@ module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended'
'eslint:recommended',
'plugin:cypress/recommended'
],
env: {
"browser": true,
"node": true,
},
parserOptions: {
ecmaVersion: 'latest'
},
rules: {
"cypress/no-unnecessary-waiting": 0,
"cypress/unsafe-to-chain-command": 0,
"no-unused-vars": 1,
"vue/no-mutating-props": 0
}
}
15 changes: 10 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<html lang="nl">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="apple-touch-icon" href="/favicon.png">
<link rel="icon" href="/favicon.png" type="image/png">
<title>LIWO</title>
</head>
<body>
<noscript>
<strong>We're sorry but liwo-static doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
<script type="module" src="/src/main.js"></script>
</body>
</html>
1,363 changes: 436 additions & 927 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "liwo-static",
"version": "3.0.0",
"version": "3.0.1",
"private": true,
"scripts": {
"serve": "vite",
Expand All @@ -14,6 +14,7 @@
"release": "semantic-release"
},
"dependencies": {
"@semantic-release/git": "^10.0.1",
"@vue-a11y/skip-to": "^3.0.3",
"dom-to-image": "^2.6.0",
"fast-equals": "^5.0.1",
Expand Down Expand Up @@ -42,6 +43,7 @@
"chai-things": "^0.2.0",
"cypress": "^9.4.1",
"eslint": "^8.45.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-vue": "^9.15.1",
"happy-dom": "^12.9.1",
"imports-loader": "^4.0.1",
Expand All @@ -56,4 +58,4 @@
"vite": "^4.4.6",
"vitest": "^0.34.6"
}
}
}
Binary file removed public/favicon.ico
Binary file not shown.
Binary file modified public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 0 additions & 17 deletions public/index.html

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/MapFillWindowControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default {
this.windowHeight = window.innerHeight
})
},
beforeDestroy () {
beforeUnmount () {
window.removeEventListener(this.listener)
},
methods: {
Expand Down

0 comments on commit 3ec25b9

Please sign in to comment.