File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed
client/modules/IDE/reducers Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ function draw() {
11
11
12
12
const defaultHTML =
13
13
`<!DOCTYPE html>
14
- <html>
14
+ <html lang="en" >
15
15
<head>
16
16
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
17
17
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/addons/p5.sound.min.js"></script>
Original file line number Diff line number Diff line change 92
92
"webpack-node-externals" : " ^1.7.2"
93
93
},
94
94
"engines" : {
95
- "node" : " 12.14.1 " ,
96
- "npm" : " 6.13.4 "
95
+ "node" : " 11.15.0 " ,
96
+ "npm" : " 6.7.0 "
97
97
},
98
98
"dependencies" : {
99
99
"@babel/core" : " ^7.4.5" ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const clientSecret = process.env.GITHUB_SECRET;
19
19
20
20
const defaultHTML =
21
21
`<!DOCTYPE html>
22
- <html>
22
+ <html lang="en" >
23
23
<head>
24
24
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.min.js"></script>
25
25
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.dom.min.js"></script>
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Project from '../models/project';
9
9
10
10
const defaultHTML =
11
11
`<!DOCTYPE html>
12
- <html>
12
+ <html lang="en" >
13
13
<head>
14
14
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
15
15
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/addons/p5.sound.min.js"></script>
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ export function get404Sketch(callback) {
127
127
} ) ;
128
128
} else {
129
129
callback ( insertErrorMessage ( `<!DOCTYPE html>
130
- <html>
130
+ <html lang="en" >
131
131
<head>
132
132
<meta charset="utf-8" />
133
133
</head>
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ export function renderIndex() {
2
2
const assetsManifest = process . env . webpackAssets && JSON . parse ( process . env . webpackAssets ) ;
3
3
return `
4
4
<!DOCTYPE html>
5
- <html>
5
+ <html lang="en" >
6
6
<head>
7
7
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
8
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -12,7 +12,7 @@ export function renderIndex() {
12
12
${ process . env . NODE_ENV === 'production' ? `<link rel='stylesheet' href='${ assetsManifest [ '/app.css' ] } ' />` : '' }
13
13
<link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
14
14
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
15
- <link rel='shortcut icon' href='https://raw.githubusercontent.com/processing/p5.js-website-OLD/master/favicon.ico' type='image/x-icon'/ >
15
+ <link rel='shortcut icon' href='https://raw.githubusercontent.com/processing/p5.js-website-OLD/master/favicon.ico' type='image/x-icon' / >
16
16
<script>
17
17
if (!window.process) {
18
18
window.process = {};
You can’t perform that action at this time.
0 commit comments