Skip to content

Commit 1c35a88

Browse files
Merge pull request #97 from CodeWithGroup/dependabot/bundler/nokogiri-1.11.6
Bump nokogiri from 1.11.3 to 1.11.6
2 parents 2649aa1 + e1fd2f4 commit 1c35a88

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Gemfile.lock

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ GEM
2424
http_parser.rb (~> 0.6.0)
2525
ethon (0.14.0)
2626
ffi (>= 1.15.0)
27+
eventmachine (1.2.7)
2728
eventmachine (1.2.7-x64-mingw32)
2829
execjs (2.7.0)
2930
faraday (1.4.1)
@@ -35,6 +36,7 @@ GEM
3536
faraday-excon (1.1.0)
3637
faraday-net_http (1.0.1)
3738
faraday-net_http_persistent (1.1.0)
39+
ffi (1.15.0)
3840
ffi (1.15.0-x64-mingw32)
3941
forwardable-extended (2.6.0)
4042
gemoji (3.0.1)
@@ -215,7 +217,9 @@ GEM
215217
jekyll-seo-tag (~> 2.1)
216218
minitest (5.14.4)
217219
multipart-post (2.1.1)
218-
nokogiri (1.11.3-x64-mingw32)
220+
nokogiri (1.11.6-x64-mingw32)
221+
racc (~> 1.4)
222+
nokogiri (1.11.6-x86_64-linux)
219223
racc (~> 1.4)
220224
octokit (4.21.0)
221225
faraday (>= 0.9)
@@ -253,17 +257,17 @@ GEM
253257
thread_safe (~> 0.1)
254258
unf (0.1.4)
255259
unf_ext
260+
unf_ext (0.0.7.7)
256261
unf_ext (0.0.7.7-x64-mingw32)
257262
unicode-display_width (1.7.0)
258-
wdm (0.1.1)
259263
zeitwerk (2.4.2)
260264

261265
PLATFORMS
262266
x64-mingw32
267+
x86_64-linux
263268

264269
DEPENDENCIES
265270
github-pages
266-
wdm (>= 0.1.0)
267271

268272
BUNDLED WITH
269273
2.2.16

js/check-width.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ $(function () {
88
var windowWidth = $window.width();
99

1010
function checkWidth(reload) {
11-
console.log(reload)
1211
if (!reload) {
1312
if ($(window).width() === windowWidth) { //prevents the sidebar being opened on scroll on Apple browsers
1413
checkWidthToggleClass();
1514
}
1615
} else {
16+
console.log("CheckWidthFalse")
1717
checkWidthToggleClass();
1818
}
1919
}
@@ -33,5 +33,5 @@ $(function () {
3333
// Execute on load
3434
checkWidth(true);
3535
// Bind event listener
36-
$(window).resize(checkWidth(false));
36+
$(window).resize(checkWidth);
3737
});

0 commit comments

Comments
 (0)