Skip to content

Commit af23598

Browse files
author
Axel
committed
Update some images
1 parent b5df153 commit af23598

File tree

16 files changed

+20
-8
lines changed

16 files changed

+20
-8
lines changed

01 - JavaScript Drum Kit/image/01_port.jpg

100644100755
File mode changed.

02 - JS and CSS Clock/image/02_port.jpg

100644100755
File mode changed.

03 - CSS Variables/image/03_port.jpg

100644100755
File mode changed.

05 - Flex Panel Gallery/image/05_port.jpg

100644100755
File mode changed.

06 - Type Ahead/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const cities = [];
22

3-
// Safari not support fetch at this moment.
3+
// Safari doesn't support fetch at this moment.
44
// fetch(endpoint)
55
// .then(blob => blob.json())
66
// .then(data => cities.push(...data));

12 - Key Sequence Detection/dist/main.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

12 - Key Sequence Detection/dist/main.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

12 - Key Sequence Detection/image/chuck.png

100644100755
-128 KB
Loading

12 - Key Sequence Detection/image/chuck4.png

100644100755
-195 KB
Loading
-1.18 MB
Loading
38.5 KB
Loading

12 - Key Sequence Detection/main.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ class Chuck {
1414
2: "image/chuck3.gif",
1515
3: "image/chuck4.png",
1616
4: "image/chuck5.gif",
17-
5: "image/chuck6.gif"
17+
5: "image/chuck6.gif",
18+
6: "image/chuck7.png"
1819
};
19-
this.img = this.url[Math.floor(Math.random() * 6)];
20+
this.img = this.url[Math.floor(Math.random() * 7)];
2021
}
2122
render(){
2223
const body = document.querySelector('body');

dist/main.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

favion-JS3.png

301 KB
Loading

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
77
<link href="dist/main.css" type="text/css" rel="stylesheet">
8+
<link href="favion-JS3.png" rel="shortcut icon" type="image/ico">
89
<script src="dist/main.js"></script>
910
</head>
1011
<body>

package.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,22 @@
33
"babel-preset-es2015": "^6.22.0",
44
"browser-sync": "^2.18.8",
55
"gulp": "^3.9.1",
6-
"gulp-autoprefixer": "^3.1.1",
6+
"gulp-autoprefixer": "^4.0.0",
77
"gulp-babel": "^6.1.2",
88
"gulp-clean-css": "^3.0.4",
99
"gulp-plumber": "^1.1.0",
1010
"gulp-sass": "^3.1.0",
1111
"gulp-uglify": "^2.1.2",
12-
"node-normalize-scss": "^1.4.0"
12+
"node-normalize-scss": "^3.0.0"
13+
},
14+
"eslintConfig": {
15+
"parserOptions": {
16+
"sourceType": "module",
17+
"ecmaVersion": 8,
18+
"ecmaFeatures": {
19+
"impliedStrict": true,
20+
"jsx": false
21+
}
22+
}
1323
}
1424
}

0 commit comments

Comments
 (0)