Update part 2.

All gcode tests now compatible with multi nozzle/layer.
Up button added.
This commit is contained in:
lawgicau
2021-07-13 09:40:40 +10:00
parent 80ec6f0f18
commit 959f18642b
19 changed files with 22735 additions and 97181 deletions

View File

@ -19,7 +19,15 @@ $('head').append('<title>'+pageTitle+'</title>');
var header ='<img src="img/tt.png" class="icon" style="vertical-align:middle;" /><h1>'+pageTitle+'</h1>';
$('#header').html(header);
var footer = `<p style="text-align: center;">This page is fully <a href="https://github.com/teachingtechYT/teachingtechYT.github.io" target="_blank">open source</a>. If you find a bug or have a feature request, please post in the <a href="https://github.com/teachingtechYT/teachingtechYT.github.io/issues" target="_blank">issues</a> section.</p>
var up = '^ <span style="font-weight:bold;">TOP</span> ^';
$('#up').html(up);
$( "#up" ).bind( "click", function() {
$('html, body').animate({scrollTop: '0px'}, 500);
});
var footer = `
<p style="text-align: center;">This page is fully <a href="https://github.com/teachingtechYT/teachingtechYT.github.io" target="_blank">open source</a>. If you find a bug or have a feature request, please post in the <a href="https://github.com/teachingtechYT/teachingtechYT.github.io/issues" target="_blank">issues</a> section.</p>
<p style="text-align: center;">This page was created using:</p>
<ul style="margin-top:-20px;">
<li><a href="https://jquery.com/" target="_blank">jQuery</a></li>