Skip to content

Commit 648a151

Browse files
committed
minor updates
1 parent 88c446e commit 648a151

File tree

11 files changed

+44
-10923
lines changed

11 files changed

+44
-10923
lines changed

_pages/workingGroups/4K12.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ embeeddedResources:
5151
+ [Wio Terminal + Codecraft & Edge Impulse (Gesture Recognition)](https://www.hackster.io/mjrobot/tinyml-made-easy-gesture-recognition-ce13a5)
5252
+ [SparkFun (Nordic) + Edge Impulse](https://www.sparkfun.com/edge_impulse_nordic)
5353
+ [micro:bit + Arducam](https://www.arducam.com/docs/microbit-camera/2mp-ov2640-arducam-camera-module-for-microbit/)
54+
+ [micro:bit + ML Machine](https://ml-machine.org/) with [course materials](https://library.ct-denmark.org/machine-learning-machine-microbit/) in Danish
5455

5556
If you would like to add resources to this list please email as at {% include email %}!
5657

_site/404.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<meta property="og:locale" content="en_US">
2222
<meta property="og:site_name" content="TinyMLedu">
2323
<meta property="og:title" content="TinyMLedu">
24-
<meta property="og:url" content="http://localhost:4000/404.html">
24+
<meta property="og:url" content="https://tinymlx.github.io/404.html">
2525

2626

2727
<meta property="og:description" content="The Tiny Machine Learning Open Education Initiative">
@@ -41,7 +41,7 @@
4141

4242

4343

44-
<link rel="canonical" href="http://localhost:4000/404.html">
44+
<link rel="canonical" href="https://tinymlx.github.io/404.html">
4545

4646

4747

@@ -52,7 +52,7 @@
5252

5353
"@type": "Person",
5454
"name": "TinyMLedu",
55-
"url": "http://localhost:4000/"
55+
"url": "https://tinymlx.github.io/"
5656

5757
}
5858
</script>
@@ -108,10 +108,6 @@
108108
</ul>
109109
</nav>
110110

111-
<!--[if lt IE 9]>
112-
<div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
113-
<![endif]-->
114-
115111

116112

117113
<div class="masthead">

_site/assets/css/main.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/assets/js/_main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
jQuery plugin settings and other scripts
33
========================================================================== */
44

5-
$(document).ready(function() {
5+
$(function() {
66
// FitVids init
77
$("#main").fitVids();
88

99
// Sticky sidebar
1010
var stickySideBar = function() {
1111
var show =
12-
$(".author__urls-wrapper button").length === 0
12+
$(".author__urls-wrapper").find("button").length === 0
1313
? $(window).width() > 1024 // width should match $large Sass variable
14-
: !$(".author__urls-wrapper button").is(":visible");
14+
: !$(".author__urls-wrapper").find("button").is(":visible");
1515
if (show) {
1616
// fix
1717
$(".sidebar").addClass("sticky");
@@ -28,9 +28,9 @@ $(document).ready(function() {
2828
});
2929

3030
// Follow menu drop down
31-
$(".author__urls-wrapper button").on("click", function() {
31+
$(".author__urls-wrapper").find("button").on("click", function() {
3232
$(".author__urls").toggleClass("is--visible");
33-
$(".author__urls-wrapper button").toggleClass("open");
33+
$(".author__urls-wrapper").find("button").toggleClass("open");
3434
});
3535

3636
// Close search screen with Esc key
@@ -49,7 +49,7 @@ $(document).ready(function() {
4949
$(".initial-content").toggleClass("is--hidden");
5050
// set focus on input
5151
setTimeout(function() {
52-
$(".search-content input").focus();
52+
$(".search-content").find("input").focus();
5353
}, 400);
5454
});
5555

_site/assets/js/main.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/assets/js/plugins/jquery.greedy-navigation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
GreedyNav.js - http://lukejacksonn.com/actuate
2+
GreedyNav.js - https://github.com/lukejacksonn/GreedyNav
33
Licensed under the MIT license - http://opensource.org/licenses/MIT
4-
Copyright (c) 2015 Luke Jackson
4+
Copyright (c) 2015 Luke Jackson http://lukejacksonn.com
55
*/
66

77
$(function() {

0 commit comments

Comments
 (0)