mirror of
https://github.com/teachingtechYT/teachingtechYT.github.io.git
synced 2024-08-30 18:23:26 +00:00
Update part 2.
All gcode tests now compatible with multi nozzle/layer. Up button added.
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user