Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ajout d'un bandeau #5

Open
wants to merge 33 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1a8842b
Update README.md
samuelortion Nov 28, 2020
d606a33
fix: upgrade helmet from 4.1.1 to 4.6.0
snyk-bot Jun 2, 2021
c281204
fix: upgrade ejs from 3.1.5 to 3.1.6
snyk-bot Jun 2, 2021
41a0f7f
Fix PWA
Sep 18, 2020
70b526f
Fix visual issue with firefox
Sep 26, 2020
302b73d
minor readme (installation tutorial) update
samuelortion Sep 27, 2020
0e7dba3
Edit last commit
g-cqd Sep 27, 2020
1d4a12c
Contact form
Sep 29, 2020
7a7643e
Update README and ESLint fix
Sep 30, 2020
6ebee2c
Add required css class
Oct 4, 2020
c8263d4
Update README. Added warning about NodeJS version.
samuelortion Sep 3, 2021
55cf558
typo et précisions importantes
samuelortion Sep 3, 2021
9972d74
Typo in README.md
DridriLaBastos Feb 20, 2022
d0c76c1
Ajout d'un bandeau
DridriLaBastos Nov 17, 2020
d02e079
Implémentation visuelle du bandeau
DridriLaBastos Nov 18, 2020
c0613b5
Sauvegarde du travail - Fenêtre modale
DridriLaBastos Nov 18, 2020
b153050
Fenetre modale EDT
DridriLaBastos Nov 18, 2020
31113fb
Meilleure intégration des thèmes
DridriLaBastos Nov 18, 2020
d7b1caf
Correction du ColorScheme
g-cqd Nov 19, 2020
3199693
Fin d'intégration du bandeau avec les thèmes
DridriLaBastos Nov 19, 2020
e5cee71
Peaufinages avant la suite
DridriLaBastos Nov 20, 2020
cf27af9
Ajout d'un serveur HTTP
DridriLaBastos Nov 22, 2020
92da07f
Meilleur système modal
DridriLaBastos Nov 23, 2020
e0876f1
Cleaner code for modal container
DridriLaBastos Jul 20, 2022
ce65e3a
Workingly constraining the size of the modal window
DridriLaBastos Jul 20, 2022
1eba273
edt image automatically resized
DridriLaBastos Jul 26, 2022
7aa4076
Blocking event passed modal windows 1eba273c
DridriLaBastos Jul 26, 2022
1668781
come back of the edt-img-container
DridriLaBastos Jul 26, 2022
80a6bcd
edt image scaled up an click (see 1eba273c935775474f4a2581513f60b2ba8…
DridriLaBastos Jul 26, 2022
9fec666
Backward and forward arrow working
DridriLaBastos Aug 18, 2022
c6e437f
EDT full screen close button working
DridriLaBastos Aug 18, 2022
09f3f3b
Dealing with sonar cloud issues
DridriLaBastos Aug 18, 2022
7a7f30f
First play with fetch request (error banner)
DridriLaBastos Aug 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ module.exports = {
'env': {
'commonjs': true,
'es2021': true,
'node': true
'node': true,
'browser': true
},
'extends': 'eslint:recommended',
'parserOptions': { 'ecmaVersion': 12 },
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ app.set( 'view engine', 'ejs' );
function initHelmet( app, helmet ) {
app.use( helmet.contentSecurityPolicy( {
directives: {
defaultSrc: ['\'self\''],
defaultSrc: ['\'self\'', 'edt.univ-evry.fr'],
baseUri: ['\'self\''],
blockAllMixedContent: [],
fontSrc: ['\'self\'', 'https:', 'data:'],
Expand Down Expand Up @@ -87,4 +87,4 @@ app.use( ( req, res, next ) => {

app.listen( port, () => {
console.log( `Server listening at http://localhost:${port}` );
} );
} );
Loading